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 f87e124 commit a663b44Copy full SHA for a663b44
.github/workflows/ci.yml
@@ -49,8 +49,12 @@ jobs:
49
ci-passed:
50
runs-on: ubuntu-latest
51
needs: [ci-started, build-test-release, check-code-quality, reuse-compliance]
52
+ if: always()
53
54
steps:
55
+ # this explicit check is needed cfr. https://github.com/orgs/community/discussions/75568
56
+ - name: "Check whether all jobs passed"
57
+ run: echo '${{ toJSON(needs) }}' | jq -e 'to_entries | all(.value.result == "success")'
58
- run: echo "ci passed"
59
60
publish:
0 commit comments