Skip to content

Commit

Permalink
feat: Adding on push hook.
Browse files Browse the repository at this point in the history
This is part of the work to be able to have releases but protect the
main branch.
  • Loading branch information
lazzurs committed Dec 1, 2024
1 parent d640a97 commit c2d7188
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c2d7188

Please sign in to comment.