After following the docs, I can’t figure out why my workflow isn’t starting. I have one workflow name: Production build, test, & deploy
completing.
But two other workflows setup to run after that workflow completes aren’t starting. They aren’t even showing in the list of workflows on the Actions page.
Here’s what one of the child workflows looks like that I’d like to start after the one listed above completes:
name: Production CDN purge
defaults:
run:
shell: bash
on:
workflow_run:
workflows: ["Production build, test, & deploy"]
types:
- completed
Does the “parent” workflow have to do anything special for these others to be seen?