Skip to content

Commit 5f70136

Browse files
committed
ci: add conventional commit check in the app pipeline
1 parent 1562ae8 commit 5f70136

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/app-pipeline.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ permissions:
2020
id-token: write # This is required for requesting the JWT
2121

2222
jobs:
23+
check-conventional-commits:
24+
uses: armakuni/github-actions/.github/workflows/[email protected]
25+
2326
linting:
2427
runs-on: ubuntu-latest
2528
steps:
@@ -41,6 +44,7 @@ jobs:
4144
runs-on: ubuntu-latest
4245
needs:
4346
- linting
47+
- check-conventional-commits
4448
steps:
4549
- uses: actions/checkout@v4
4650

@@ -63,6 +67,7 @@ jobs:
6367
working-directory: rates
6468
needs:
6569
- linting
70+
- check-conventional-commits
6671
steps:
6772
- uses: actions/checkout@v4
6873

@@ -82,6 +87,7 @@ jobs:
8287
runs-on: ubuntu-latest
8388
needs:
8489
- linting
90+
- check-conventional-commits
8591
steps:
8692
- name: Placeholder for unit test
8793
run: |
@@ -91,6 +97,7 @@ jobs:
9197
runs-on: ubuntu-latest
9298
needs:
9399
- linting
100+
- check-conventional-commits
94101
steps:
95102
- name: Set up QEMU
96103
uses: docker/setup-qemu-action@v3

0 commit comments

Comments
 (0)