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
This is not related to how this action works, it's more related to how GH Actions work, in general.
I was testing sending a message after running unit tests and was surprised that I never got a slack notification for it, when looking at the debug output I saw this
Meaning the step didn't run, because the previous one had failed. I worked around this issue by adding if: always() at the top of the step and it worked just fine.
This got me wondering, should this be stated in the README?
The text was updated successfully, but these errors were encountered:
This is not related to how this action works, it's more related to how GH Actions work, in general.
I was testing sending a message after running unit tests and was surprised that I never got a slack notification for it, when looking at the debug output I saw this
Meaning the step didn't run, because the previous one had failed. I worked around this issue by adding
if: always()
at the top of the step and it worked just fine.This got me wondering, should this be stated in the README?
The text was updated successfully, but these errors were encountered: