From 26b1f0fe23ebb4001ae0e517f2ac8197988154ef Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Thu, 2 Mar 2023 16:51:32 +0000 Subject: [PATCH] chore: add conventional commit check --- .github/workflows/commits.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/commits.yml diff --git a/.github/workflows/commits.yml b/.github/workflows/commits.yml new file mode 100644 index 00000000..ab5fc28e --- /dev/null +++ b/.github/workflows/commits.yml @@ -0,0 +1,14 @@ +name: Conventional Commit Checker + +on: + pull_request: + branches: [main] + types: [opened, edited, synchronize] + +jobs: + check-for-cc: + runs-on: ubuntu-latest + steps: + - name: check-for-cc + id: check-for-cc + uses: agenthunt/conventional-commit-checker-action@v1.0.0