Skip to content

Commit

Permalink
Check commit messages for correctness (#13)
Browse files Browse the repository at this point in the history
Using a third party GitHub Action[1], which checks commit messages
based on the guidelines set out by Chris Beams[2]

[1] https://github.com/mristin/opinionated-commit-message
[2] https://chris.beams.io/posts/git-commit/
  • Loading branch information
johnboyes committed Jul 29, 2020
1 parent 10f3fec commit 3c4d181
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/check-commit-message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: 'Check commit message style'
on: # yamllint disable-line rule:truthy
pull_request:
types:
- opened
- edited
- reopened
- synchronize
push:

jobs:
check-commit-message-style:
name: Check commit message style
runs-on: ubuntu-latest
steps:
- name: Check
uses: mristin/[email protected]

0 comments on commit 3c4d181

Please sign in to comment.