From d157348f0566d3da5bf00a3f1e414f95443b3a59 Mon Sep 17 00:00:00 2001 From: 5an7y Date: Tue, 23 Jun 2026 12:23:47 -0700 Subject: 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 <223556219+Copilot@users.noreply.github.com> --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) 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 -- cgit v1.3.1