Skip to content

Commit

Permalink
fix: added semantic GA
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Aug 22, 2024
1 parent c4ed3a6 commit 5b30fd0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/semantic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Check that the commit messages are between 20 and 150 chars,
# and that they follow the rule
# <type> (<scope>): <subject>
# type: docs, feat, fix, refactor, style or test
# scope (optional): any extra info, (like DMS or whatever)

name: 'Commit Message Check'
on: pull_request

jobs:
check-commit-message:
name: Check Commit Message
runs-on: ubuntu-latest
steps:
- name: Check Commit Format
uses: gsactions/commit-message-checker@v2
with:
pattern: '^((docs|feat|fix|refactor|style|test|sweep)( ?\(.*\))?: .+|Revert ".+"|\[pre-commit.ci\] .+)$'
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
flags: 'gim'
error: 'Your commit has to follow the format "<type>(<scope>): <subject>"".'
- name: Check Commit Length
uses: gsactions/commit-message-checker@v2
with:
pattern: '^.{20,150}$'
error: 'Commit messages should be between 20 and 150 chars'
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

0 comments on commit 5b30fd0

Please sign in to comment.