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 cca5eb9Copy full SHA for cca5eb9
.github/workflows/pipeline.yml
@@ -5,8 +5,18 @@ 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
+ fetch-depth: 0
16
+ check-latest-tag-only: true # This is required since older commits didn't follow conventional commits
17
build:
18
runs-on: ubuntu-latest
19
+ needs: conventional-commit-check
20
steps:
21
- uses: actions/checkout@v4
22
- uses: actions/setup-java@v4
0 commit comments