From d891b0c01e6de8db88e9a287eec61bbe560feeac Mon Sep 17 00:00:00 2001 From: mia Date: Tue, 30 Jun 2026 11:06:54 -0400 Subject: [PATCH] watcher: dispatch build-image after bump --- .github/workflows/upstream-patches-watch.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/upstream-patches-watch.yml b/.github/workflows/upstream-patches-watch.yml index 0581962..8aae68e 100644 --- a/.github/workflows/upstream-patches-watch.yml +++ b/.github/workflows/upstream-patches-watch.yml @@ -60,3 +60,12 @@ jobs: author: { name: 'ps5-linux-bot', email: 'ps5-linux-bot@users.noreply.github.com' }, }); core.info(`pushed bump to ${latest}`); + + // Pushes authored by GITHUB_TOKEN don't fire workflow_run / + // push events, so trigger-builds.yml won't auto-run. Kick off + // the matrix build directly. + await github.rest.actions.createWorkflowDispatch({ + owner, repo, workflow_id: 'build-image.yml', ref: 'main', + inputs: { distro: 'all' }, + }); + core.info('dispatched build-image.yml distro=all');