We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48d4b27 commit 26e4fcdCopy full SHA for 26e4fcd
1 file changed
.github/workflows/ci-config.yml
@@ -113,3 +113,18 @@ jobs:
113
- name: Sonar Analysis
114
run: mvn sonar:sonar -Dsonar.token=${{ secrets.SONARQUBE_TOKEN }}
115
116
+
117
+ check:
118
+ if: always()
119
+ needs:
120
+ - build
121
+ - performance
122
+ - documentation
123
+ - sonar
124
+ runs-on: ubuntu-latest
125
+ steps:
126
+ - name: Decide whether the needed jobs succeeded or failed
127
+ uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
128
+ with:
129
+ allowed-skips: sonar, performance
130
+ jobs: ${{ toJSON(needs) }}
0 commit comments