mirror of
https://github.com/project-zot/zot.git
synced 2025-02-17 23:45:36 -05:00
fix(ci/cd): update the commit msg checker settings (#846)
Update the checker to check for length limits and against all commits. Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
This commit is contained in:
parent
f235f88426
commit
65df973f70
1 changed files with 7 additions and 2 deletions
9
.github/workflows/commit-msg.yaml
vendored
9
.github/workflows/commit-msg.yaml
vendored
|
@ -23,11 +23,16 @@ jobs:
|
||||||
pattern: '^((build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(.+\))?(!)?(: (.*\s*)*))'
|
pattern: '^((build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(.+\))?(!)?(: (.*\s*)*))'
|
||||||
flags: 'gm'
|
flags: 'gm'
|
||||||
error: 'Your first line has to the Conventional Commits specification.'
|
error: 'Your first line has to the Conventional Commits specification.'
|
||||||
|
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'
|
||||||
|
accessToken: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Check Line Length
|
- name: Check Line Length
|
||||||
uses: gsactions/commit-message-checker@v1
|
uses: gsactions/commit-message-checker@v1
|
||||||
with:
|
with:
|
||||||
pattern: '^[^#].{74}'
|
pattern: '^[^#].{1,74}'
|
||||||
error: 'The maximum line length of 74 characters is exceeded.'
|
error: 'The maximum line length of 74 characters is exceeded.'
|
||||||
excludeDescription: 'true' # optional: this excludes the description body of a pull request
|
excludeDescription: 'true' # optional: this excludes the description body of a pull request
|
||||||
excludeTitle: 'true' # optional: this excludes the title of a pull request
|
excludeTitle: 'true' # optional: this excludes the title of a pull request
|
||||||
checkAllCommitMessages: 'false'
|
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
|
||||||
|
|
Loading…
Add table
Reference in a new issue