From 7f7f50b53f18e9f7a44965e57c5980f45905d157 Mon Sep 17 00:00:00 2001 From: Ivan D Vasin Date: Tue, 26 Mar 2024 15:41:00 -0400 Subject: [PATCH] ci(github-actions): add cocogitto to enforce Conventional Commits --- .github/workflows/cocogitto.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/cocogitto.yml diff --git a/.github/workflows/cocogitto.yml b/.github/workflows/cocogitto.yml new file mode 100644 index 0000000..5afaac8 --- /dev/null +++ b/.github/workflows/cocogitto.yml @@ -0,0 +1,13 @@ +on: [push] + +jobs: + cog_check_job: + runs-on: ubuntu-latest + name: check conventional commit compliance + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Conventional commit check + uses: cocogitto/cocogitto-action@v3