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
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*)*))'
|
||||
flags: 'gm'
|
||||
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
|
||||
uses: gsactions/commit-message-checker@v1
|
||||
with:
|
||||
pattern: '^[^#].{74}'
|
||||
pattern: '^[^#].{1,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: '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…
x
Reference in New Issue
Block a user