Skip to content

Commit

Permalink
chore: update action conventional commits
Browse files Browse the repository at this point in the history
Introduce a request id and a reference to latest request. Dismiss
incoming responses other than from latest request.

Remove timeouts which were used to mitigate the racing issue but are
obsolete now.

Reviewed-by: Z
ING-1123
  • Loading branch information
emanuelaepure10 committed Mar 6, 2024
1 parent 3e61a59 commit 976be2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gs-commit-message-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ jobs:
with:
pattern: '^(fixup! )?(feat|fix|docs|style|refactor|perf|test|chore)(\(.+\))?: .{1,100}$'
flags: 'gm'
error: 'Your first line has to contain a commit type like "[BUGFIX]".'
error: 'Your first line has to contain a commit type like "(fixup! )?(feat|fix|docs|style|refactor|perf|test|chore): text".'
- name: Check Line Length
uses: gsactions/commit-message-checker@v1
with:
pattern: '^[^#].{200}'
error: 'The maximum line length of 200 characters is exceeded.'
pattern: '^[^#].{2000}'
error: 'The maximum line length of 2000 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
Expand Down

0 comments on commit 976be2b

Please sign in to comment.