File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Conventionnal commit
3+ on :
4+ - pull_request
5+
6+ jobs :
7+ cog_check_job :
8+ runs-on : ubuntu-latest
9+ name : Check compliance
10+ steps :
11+ - uses : actions/checkout@v3
12+ with :
13+ fetch-depth : 0
14+ ref : ${{ github.event.pull_request.head.sha }}
15+
16+ - name : Conventional commit check
17+ uses : cocogitto/cocogitto-action@v3
18+ with :
19+ check-latest-tag-only : true
20+
Original file line number Diff line number Diff line change 1+ [commit_types ]
2+ feat = { changelog_title = " Features" }
3+ fix = { changelog_title = " Bugfix" }
4+ chore = { changelog_title = " Miscellaneous" , omit_from_changelog = true }
5+ refactor = { changelog_title = " Refactor" }
6+ test = { changelog_title = " Tests" , omit_from_changelog = true }
7+ doc = { changelog_title = " Documentation" , omit_from_changelog = true }
8+ ci = { changelog_title = " CI" , omit_from_changelog = true }
You can’t perform that action at this time.
0 commit comments