Skip to content

Commit

Permalink
ci: add github action for conventional commits
Browse files Browse the repository at this point in the history
  • Loading branch information
a-dubs committed Sep 23, 2024
1 parent d1ce9b4 commit ab8794b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/conventional-commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Conventional Commits

on:
pull_request:
branches:
- "*"

jobs:
build:
name: Conventional Commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: webiny/action-conventional-commits@v1.3.0
with:
allowed-commit-types: "feat,fix,docs,ci,test,refactor,chore"

0 comments on commit ab8794b

Please sign in to comment.