What is a GitHub Actions Workflow?
Definition of a workflow file in the context of GitHub Actions.
Definition
A workflow is a configurable automated process in GitHub Actions. It is composed of one or more jobs and is defined by a YAML file stored in the .github/workflows directory of a repository.
Structure
A workflow must contain an "on" directive defining the trigger event, and a "jobs" block defining the tasks (steps) to execute. Workflows can be triggered concurrently or sequentially.