From d9e6f9dce8ffcc037b89f3a35f4088dd19269ea0 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 10 May 2026 16:27:26 +0200 Subject: [PATCH] github: add workflow_dispatch trigger to kernel and packages Allow the Build Kernel and Build all core packages workflows to be launched manually from the Actions tab. The shared workflow side detects workflow_dispatch and, for Build Kernel, rebuilds the full target/subtarget matrix including testing kernel versions, so a manual run can re-seed the s3 ccache when a queued push run got displaced from the concurrency queue by the next commit on main. Co-Authored-By: Claude Opus 4.7 (1M context) Signed-off-by: Hauke Mehrtens Link: https://github.com/openwrt/openwrt/pull/23283 Signed-off-by: Christian Marangi --- .github/workflows/kernel.yml | 1 + .github/workflows/packages.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index 43c610ab4f0..d45ed6f0fc3 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -19,6 +19,7 @@ on: - 'target/linux/**' branches-ignore: - master + workflow_dispatch: permissions: contents: read diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index f061c1cd371..f26b0ee94e8 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -19,6 +19,7 @@ on: - 'toolchain/**' branches-ignore: - master + workflow_dispatch: permissions: contents: read