-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ce3510
commit 1fc3897
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: 'Commit Message Check' | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- reopened | ||
- synchronize | ||
push: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
check-commit-message: | ||
name: Check Commit Message | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check Commit Type | ||
uses: gsactions/commit-message-checker@v1 | ||
with: | ||
pattern: '\[[^]]+\] .+$' | ||
flags: 'gm' | ||
error: 'Your first line has to contain a commit type like "[BUGFIX]".' | ||
- name: Check Line Length | ||
uses: gsactions/commit-message-checker@v1 | ||
with: | ||
pattern: '^[^#].{74}' | ||
error: 'The maximum line length of 74 characters is exceeded.' | ||
- name: Check for Resolves / Fixes | ||
uses: gsactions/commit-message-checker@v1 | ||
with: | ||
pattern: '^.+(Resolves|Fixes): \#[0-9]+$' | ||
error: 'You need at least one "Resolves|Fixes: #<issue number>" line.' |