This directory contains GitHub Workflows of two primary types:
- Ones to be used as dependencies within other workflow files outside this directory.
- These types of workflows are stored in files with names preceded with
dep_
- These types of workflows are stored in files with names preceded with
- Ones to be executed directly.
For more information on how dependencies work in GitHub Actions, see the GitHub documentation on reusing workflows.
The primary mechanism by which all files within this directory declare themselves dependencies of others is the workflow_call trigger. This indicates to GitHub Actions that, for a given workflow, another workflow will invoke it.
To read more about this trigger, see GitHub Actions documentation.