diff --git a/.github/workflows/conventional-commit.yml b/.github/workflows/conventional-commit.yml new file mode 100644 index 0000000..1530950 --- /dev/null +++ b/.github/workflows/conventional-commit.yml @@ -0,0 +1,21 @@ +name: Conventional Commits +on: + pull_request: + branches: [ main ] + +permissions: + contents: read + pull-requests: read + +jobs: + build: + name: Conventional Commits + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - uses: webiny/action-conventional-commits@v1.3.0 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}