diff options
| author | 5an7y <[email protected]> | 2026-06-23 12:23:47 -0700 |
|---|---|---|
| committer | 5an7y <[email protected]> | 2026-06-23 12:23:47 -0700 |
| commit | d157348f0566d3da5bf00a3f1e414f95443b3a59 (patch) | |
| tree | b41228a2437e2afda418c0b3ac7bce28bcf7acb9 | |
| parent | 8745e5b82f0a0183e779dcdcc8164ad926fdcf8c (diff) | |
Allow manual runs of the build-all workflow (workflow_dispatch)
Add a workflow_dispatch trigger so "Build all driver samples" can be started
on demand from the Actions tab.
Co-authored-by: Copilot <[email protected]>
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de856d55..4b263a82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,7 @@ name: Build all driver samples on: + # Allows the workflow to be triggered manually from the Actions tab ("Run workflow"). + workflow_dispatch: push: branches: - main |
