Assuming I have a repository with and two github actions workflows. (1st workflow consists of about 15 actions, 2nd workflow consists of 5 actions) The first one is triggered "on push" The second one should trigger after first one fails or succeds to do some side work (i.e. send notifications, create report etc). Especially interesting is the failure case. I have tried to set "on ="check_suite"" for the second workflow. But it does not get triggered. (When I query explecitely the check-suites API, I see the updated information about runs, but I need a trigger on that) I should be missing something basic concept here...
... View more