Skip to content

Commit d930c1c

Browse files
committed
feat(ci): Add workflow to check commit message
This commit adds a workflow to check the commit message making sure that all commit messages are following the conventional commits specification Signed-off-by: vprashar2929 <[email protected]>
1 parent f915904 commit d930c1c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/commit-msg.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Commit message check
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
check-commit-message:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v4
12+
13+
- name: Check commit message
14+
uses: webiny/[email protected]
15+
with:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)