From 83165710ac15146e7928e294c99e2156a87b284c Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Mon, 14 Sep 2026 16:21:08 +0100 Subject: [PATCH] Add `workflow_dispatch` trigger to CI workflow Add the `workflow_dispatch` event to the CI workflow's `on:` triggers, so CI can be triggered manually from the Actions tab. This makes it easy to confirm `main` is working (e.g. when upstream breakage is suspected), and for classic buildpacks to re-run CI on external contributor PRs from forks, whose CI otherwise fails until their branch is mirrored to this repo. GUS-W-24176912. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e17b37..75bf9fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,7 @@ on: branches: - main pull_request: + workflow_dispatch: permissions: contents: read