Skip to content

Commit 3c4d181

Browse files
authored
Check commit messages for correctness (#13)
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/
1 parent 10f3fec commit 3c4d181

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: 'Check commit message style'
3+
on: # yamllint disable-line rule:truthy
4+
pull_request:
5+
types:
6+
- opened
7+
- edited
8+
- reopened
9+
- synchronize
10+
push:
11+
12+
jobs:
13+
check-commit-message-style:
14+
name: Check commit message style
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Check
18+
uses: mristin/[email protected]

0 commit comments

Comments
 (0)