GH actions for top level
#2
Closed
opened 3 years ago by mbutterick
·
1 comments
Loading…
Reference in New Issue
There is no content yet.
Delete Branch '%!s(<nil>)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
That triggers the actions in subdirs.
As of today, GH workflows can only live in the top-level
.github/workflows
directory. They cannot live in subdirectories. Thus there is no way to use a top-level workflow to trigger workflows in subdirectories (because they are not allowed to live there).Instead:
working-directory
within each (to cause the action to be executed using the appropriate subdirectory as working directory), and.github/workflows
directory.The workflows can probably be simplified further (e.g., consolidated into fewer). For now, however, we are 🤘