Skip to content

Commit 80e5ead

Browse files
ci: add conventional commit and branch checks from snowballr-ci
1 parent ee33f77 commit 80e5ead

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/git_conventions.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,30 @@ jobs:
2020
uses: SE-UUlm/snowballr-ci/src/ensure-linear-history@v1
2121
with:
2222
target-branch: main
23+
24+
ensure-conventional-commits:
25+
name: Ensure Conventional Commits
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout repository
29+
uses: actions/checkout@v7
30+
with:
31+
fetch-depth: 0
32+
ref: ${{ github.head_ref }}
33+
34+
- name: Run Check
35+
uses: SE-UUlm/snowballr-ci/src/ensure-conventional-commits@feat/25-feature-add-more-git-conventions
36+
with:
37+
target-branch: main
38+
39+
ensure-conventional-branches:
40+
name: Ensure Conventional Branches
41+
runs-on: ubuntu-latest
42+
steps:
43+
- name: Checkout repository
44+
uses: actions/checkout@v7
45+
46+
- name: Run Check
47+
uses: SE-UUlm/snowballr-ci/src/ensure-conventional-branches@feat/25-feature-add-more-git-conventions
48+
with:
49+
branch-name: ${{ github.head_ref }}

0 commit comments

Comments
 (0)