From 158cedbc01b938f423f23416a58527af8cbdd3a2 Mon Sep 17 00:00:00 2001 From: Mirza Krak Date: Wed, 15 Oct 2025 12:53:38 +0200 Subject: [PATCH] chore: add conventional commit workflow Signed-off-by: Mirza Krak --- .github/workflows/conventional-commit.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/conventional-commit.yml 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 }}