We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dfb68f5 + b090175 commit 46ebaddCopy full SHA for 46ebadd
2 files changed
.github/workflows/cd-release.yml
@@ -17,14 +17,8 @@ jobs:
17
uses: ./.github/workflows/ci-maven.yml
18
secrets: inherit
19
20
- gates:
21
- needs: ci
22
- if: success()
23
- uses: ./.github/workflows/ci-gates.yml
24
- secrets: inherit
25
-
26
release:
27
- needs: gates
+ needs: ci
28
uses: ./.github/workflows/cd-deploy.yml
29
30
with:
.github/workflows/quality.yml
@@ -0,0 +1,13 @@
1
+name: SonarQube
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ types: [opened, synchronize, reopened]
9
10
+jobs:
11
+ gates:
12
+ uses: ./.github/workflows/ci-gates.yml
13
+ secrets: inherit
0 commit comments