-
Sorry, maybe I don't understand how this action should work, but I added the check to my workflow, but I didn't get the expected result. Why is the execution status (number 1 in the screenshot) still green? check:
if: always()
runs-on: [self-hosted]
needs:
- dev_build_int_tests
steps:
- name: Install python3
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/[email protected]
with:
jobs: ${{ toJSON(needs) }} |
Beta Was this translation helpful? Give feedback.
Answered by
webknjaz
Nov 29, 2022
Replies: 1 comment
-
Sounds like you might be using something like |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
webknjaz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sounds like you might be using something like
continue-on-failure: true
in those jobs, which makes GitHub set a successful outcome for them. The red crosses don't correspond tooutcome
but toresult
which may still be failing.