Skip to content

Commit

Permalink
Merge pull request #422 from Interhyp/testbranch
Browse files Browse the repository at this point in the history
blubber test
  • Loading branch information
KRaffael authored Feb 14, 2025
2 parents 43f0fd1 + 0d2b440 commit 477ee62
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/semantic-commit-message-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Semantic Commit Message Checker'
on:
push:
branches-ignore:
- main

jobs:
check-commit-message:
name: Check Commit Message
runs-on: ubuntu-latest
steps:
- name: Check valid types
uses: gsactions/commit-message-checker@v1
with:
pattern: '^(((fix|feat|docs|style|perf|refactor|test|build|chore|ci|revert)\([\w_-]+\)))!{0,1}: .*'
error: 'Your commit message should match one of these types (build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test) in header.'
excludeDescription: 'true'
excludeTitle: 'true'
checkAllCommitMessages: 'true'
accessToken: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 477ee62

Please sign in to comment.