Workflows triggered by the workflow_run event are sometimes skipped #21090
Replies: 12 comments 5 replies
-
|
Same problem here! |
Beta Was this translation helpful? Give feedback.
-
|
We are experiencing the same problem, we are using the exact same condition and sometimes it will skip even when the origin workflow was successful, no matter how many times we try to re-run. Also a re-run with the flag This is very annoying as sometimes we have 3 workflows chained (build / release / deploy) and we can't easily re-trigger them manually. |
Beta Was this translation helpful? Give feedback.
-
|
We started hitting this same issue last week. It turns out that the |
Beta Was this translation helpful? Give feedback.
-
|
same issue here |
Beta Was this translation helpful? Give feedback.
-
|
Same issue. I posted it on Stack Overflow and found this thread from the comments. Here's the link to my post for more information on my tests. Overall, I think it started last week (on the 21st of July for me) and that sometimes the output of workflow_run.conclusion is an empty string (even though that's not a documented possibility). |
Beta Was this translation helpful? Give feedback.
-
|
Plus one. All workflow_run builds started to fail a few hours ago, and I then noticed that it also happened randomly a few times last week. |
Beta Was this translation helpful? Give feedback.
-
|
same issue here, started to happen about 7 days ago |
Beta Was this translation helpful? Give feedback.
-
|
Same issue here. It seems that the I'm using this workflow to debug: On the printed JSON, the |
Beta Was this translation helpful? Give feedback.
-
|
This note was helpful.
Reference: Workflow Events - workflow_run documentation |
Beta Was this translation helpful? Give feedback.
-
|
In my case, you have to use a workflow name without space then you can get value of The failed case, dependent workflow name is The success case after change my workflow name to |
Beta Was this translation helpful? Give feedback.
-
|
Still happening today. Sometimes works, sometimes not. It seems that it fails when multiple triggering workflows happen in parallel... |
Beta Was this translation helpful? Give feedback.
-
|
This just started happening for us today. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
A few days ago I noticed that events triggered by the
workflow_runevent are sometimes just skipped without any obvious reason. For example, in this repo:https://github.com/ihhub/fheroes2/actions
workflow with the name “Clang-Tidy comments” should be triggered when the workflow with the name “Clang-Tidy” is completed - to post the diagnostic results to a pull request. However, sometimes this works as expected, and sometimes the “Clang-Tidy comments” is just skipped. I don’t see any logic and no patterns in this behavior. The only valid reason to skip the run would be the case when the parent workflow fails, because there is a check for this in the “Clang-Tidy comments” workflow’s job:
but it isn’t the case, the parent workflow has the “Success” status. Any ideas?
Thank you in advance for your help.
Beta Was this translation helpful? Give feedback.
All reactions