From 9b7ef7cac194a558b133005624c84833d42b728f Mon Sep 17 00:00:00 2001 From: iverly Date: Tue, 24 Oct 2023 09:58:25 +0200 Subject: [PATCH] feat(ci): add conventional commits check Signed-off-by: iverly --- .github/workflows/check.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/check.yaml diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml new file mode 100644 index 0000000..45ab7a3 --- /dev/null +++ b/.github/workflows/check.yaml @@ -0,0 +1,13 @@ +name: Check + +on: + pull_request: + branches: [master] + types: [opened, edited, synchronize] + +jobs: + check-for-cc: + runs-on: ubuntu-latest + steps: + - name: Check for conventional commits + uses: agenthunt/conventional-commit-checker-action@v1.0.0