Skip to content

Commit

Permalink
Chore: add proper release drafts
Browse files Browse the repository at this point in the history
  • Loading branch information
TomerHeber committed Apr 13, 2022
1 parent bc8b0c4 commit e49394c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pr-commit-message-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Commit Message Check'
on:
pull_request:
types:
- "opened"
- "edited"
- "reopened"
jobs:
check-commit-message:
name: Check Commit Message
runs-on: ubuntu-20.04
timeout-minutes: 1
steps:
- name: Check Title
uses: gsactions/commit-message-checker@v1
with:
pattern: '^.*(Feat|Chore|Fix):.*$'
error: 'You need at least one "Feat:|Chore:|Fix:" title.'
excludeDescription: true

0 comments on commit e49394c

Please sign in to comment.