From ab8794b392fcf0fe680db95e92610ad21f2148d0 Mon Sep 17 00:00:00 2001 From: a-dubs Date: Mon, 23 Sep 2024 13:11:35 -0400 Subject: [PATCH] ci: add github action for conventional commits --- .github/workflows/conventional-commits.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/conventional-commits.yml diff --git a/.github/workflows/conventional-commits.yml b/.github/workflows/conventional-commits.yml new file mode 100644 index 00000000000..ef4f796de51 --- /dev/null +++ b/.github/workflows/conventional-commits.yml @@ -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" \ No newline at end of file