diff --git a/.github/workflows/conventional-commits-check.yaml b/.github/workflows/conventional-commits-check.yaml new file mode 100644 index 00000000..555d5bcc --- /dev/null +++ b/.github/workflows/conventional-commits-check.yaml @@ -0,0 +1,13 @@ +name: Conventional Commits Check + +on: [pull_request] + +jobs: + check-conventional-commits: + name: Conventional Commits + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Check Commit Conventions + uses: webiny/action-conventional-commits@v1.3.0