watcher: dispatch build-image after bump

This commit is contained in:
mia
2026-06-30 11:06:54 -04:00
parent f05b110a46
commit d891b0c01e

View File

@@ -60,3 +60,12 @@ jobs:
author: { name: 'ps5-linux-bot', email: 'ps5-linux-bot@users.noreply.github.com' }, author: { name: 'ps5-linux-bot', email: 'ps5-linux-bot@users.noreply.github.com' },
}); });
core.info(`pushed bump to ${latest}`); 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');