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
Lets say i have a ./.github/workflows/main.yml file, this file runs all the pull-request checks and tests. But then i have another workflow file (./.github/workflows/other.yml). I would like to run this workflow other.yml after this workflow main.yml. But other.yml would only run if main.yml does not fail. How would i implement that with this action? I could not find any documentation of how to implement this outside one file. The reason i would like to do this with two files is because they have different events. And if i combine them it would be like a circular dependencies.
Can anybody clear things up for me? Sorry if its a stupid question because in kinda newbie in ci/cd
The text was updated successfully, but these errors were encountered:
Lets say i have a
./.github/workflows/main.yml
file, this file runs all the pull-request checks and tests. But then i have another workflow file (./.github/workflows/other.yml
). I would like to run this workflowother.yml
after this workflowmain.yml
. Butother.yml
would only run ifmain.yml
does not fail. How would i implement that with this action? I could not find any documentation of how to implement this outside one file. The reason i would like to do this with two files is because they have different events. And if i combine them it would be like a circular dependencies.Can anybody clear things up for me? Sorry if its a stupid question because in kinda newbie in ci/cd
The text was updated successfully, but these errors were encountered: