Skip to content

Commit

Permalink
Merge pull request #417 from vprashar2929/add-commit-check
Browse files Browse the repository at this point in the history
feat(ci): Add workflow to check commit message
  • Loading branch information
sunya-ch authored Aug 28, 2024
2 parents f8e611e + d930c1c commit 3a1987a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/commit-msg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Commit message check

on:
pull_request:

jobs:
check-commit-message:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Check commit message
uses: webiny/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3a1987a

Please sign in to comment.