We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36117b5 commit d154ef8Copy full SHA for d154ef8
.github/workflows/pipeline.yml
@@ -5,8 +5,17 @@ on:
5
pull_request:
6
7
jobs:
8
+ conventional-commit-check:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - name: Conventional commit check
13
+ uses: cocogitto/cocogitto-action@v3
14
+ with:
15
+ check-latest-tag-only: true # This is required since older commits didn't follow conventional commits
16
build:
17
runs-on: ubuntu-latest
18
+ needs: conventional-commit-check
19
steps:
20
- uses: actions/checkout@v4
21
- uses: actions/setup-java@v4
0 commit comments