From c2d718858babdd83ddfd5417bb14fb9850295b82 Mon Sep 17 00:00:00 2001 From: Rob Lazzurs Date: Sun, 1 Dec 2024 12:57:36 +0000 Subject: [PATCH] feat: Adding on push hook. This is part of the work to be able to have releases but protect the main branch. --- .github/workflows/push.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/push.yml diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 0000000..38c0d74 --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,14 @@ +--- +on: [push] + +jobs: + cog_check_job: + runs-on: ubuntu-latest + name: check conventional commit compliance + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Conventional commit check + uses: cocogitto/cocogitto-action@v3