-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update commit_message.yml description
- Loading branch information
1 parent
1d73b1e
commit 6115647
Showing
3 changed files
with
77 additions
and
36 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,18 @@ | ||
name: Conventional Commits | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
name: Conventional Commits | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: webiny/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Optional, for private repositories. | ||
allowed-commit-types: "feat,fix" # Optional, set if you want a subset of commit types to be allowed. |
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 |
---|---|---|
@@ -1,44 +1,23 @@ | ||
name: 'Commit Message Check' | ||
name: Check Commit Message | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- reopened | ||
- synchronize | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- reopened | ||
- synchronize | ||
push: | ||
branches: | ||
- main | ||
- 'releases/*' | ||
|
||
jobs: | ||
check-commit-message: | ||
name: Check Commit Message | ||
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.' | ||
excludeDescription: 'true' # optional: this excludes the description body of a pull request | ||
excludeTitle: 'true' # optional: this excludes the title of a pull request | ||
checkAllCommitMessages: 'true' # optional: this checks all commits associated with a pull request | ||
accessToken: ${{ secrets.GITHUB_TOKEN }} # github access token is only required if checkAllCommitMessages is true | ||
- 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.' | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Check commit message | ||
run: | | ||
COMMIT_MSG=$(git log --format=%B -n 1 ${{ github.sha }}) | ||
PATTERN='^(feat|fix|docs|style|refactor|perf|test|chore)(\(.+\))?: .{1,100}$' | ||
if [[ ! $COMMIT_MSG =~ $PATTERN ]]; then | ||
echo "Invalid commit message format. Must match pattern: /^(feat|fix|docs|style|refactor|perf|test|chore)(\(.+\))?: .{1,100}$/" | ||
exit 1 | ||
fi |
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,44 @@ | ||
name: 'Commit Message Check' | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- reopened | ||
- synchronize | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- reopened | ||
- synchronize | ||
push: | ||
branches: | ||
- main | ||
- 'releases/*' | ||
|
||
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.' | ||
excludeDescription: 'true' # optional: this excludes the description body of a pull request | ||
excludeTitle: 'true' # optional: this excludes the title of a pull request | ||
checkAllCommitMessages: 'true' # optional: this checks all commits associated with a pull request | ||
accessToken: ${{ secrets.GITHUB_TOKEN }} # github access token is only required if checkAllCommitMessages is true | ||
- name: Check for Resolves / Fixes | ||
uses: gsactions/commit-message-checker@v1 | ||
with: | ||
pattern: '^.+(feat|fix|docs|style|refactor|perf|test|chore): \#[0-9]+$' | ||
error: 'You need at least one "Resolves|Fixes: #<issue number>" line.' |