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
I have a status check that requires a PR build to succeed before a merge.
Since I don't want to run the whole workflow just for a force push, I simply skipped the job that the check is waiting on via if: "!contains(github.ref, 'push-action')".
This works totally fine and everything completes successfully, but an error gets logged to the console:
Would be nice if conclusion: skipped would not be treated as an error (or whichever other property is appropriate for that).
Something to keep in mind if #149 gets implemented.
The text was updated successfully, but these errors were encountered:
I have a status check that requires a PR build to succeed before a merge.
Since I don't want to run the whole workflow just for a force push, I simply skipped the job that the check is waiting on via
if: "!contains(github.ref, 'push-action')"
.This works totally fine and everything completes successfully, but an error gets logged to the console:
Would be nice if
conclusion: skipped
would not be treated as an error (or whichever other property is appropriate for that).Something to keep in mind if #149 gets implemented.
The text was updated successfully, but these errors were encountered: