You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
I thought since the
id
wascheck
, changing theid
to, say,lint
, would allow changingif: steps.check.outputs.triggered == 'true'
to
if: steps.lint.outputs.triggered == 'true'
however, this didn't work, steps.lint.outputs.triggered == 'true' never cause the next step to run
when I changed back to
check
everything worked as expected. Why is this? Doesn't really conform with the documentation here: https://docs.github.com/en/actions/learn-github-actions/contexts#steps-context which says you may accesssteps.<step_id>.outputs
The text was updated successfully, but these errors were encountered: