Skip to content

Commit

Permalink
ci(.github): Add check for Conventional Commits (#131)
Browse files Browse the repository at this point in the history
This is to make sure all future commits are written according to this
document https://www.conventionalcommits.org/en/v1.0.0/. This will
allow us to automate release note generations
  • Loading branch information
uristdwarf authored and ictus4u committed Jul 17, 2024
1 parent 3b6d487 commit 7df94ca
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Conventional Commits
on:
pull_request:
branches: [ dev ]
jobs:
build:
name: Conventional Commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: webiny/[email protected]

0 comments on commit 7df94ca

Please sign in to comment.