Add manual dispatch to bump-go workflow

Enable manual runs of the Bump Go workflow by adding the workflow_dispatch trigger alongside the existing scheduled cron. This allows maintainers to trigger the bump process on-demand while keeping the daily 3 AM UTC schedule intact.
This commit is contained in:
Kynan Ware 2026-02-06 11:52:24 -07:00
parent 0f04a4815f
commit 35828f44cd

View file

@ -2,6 +2,7 @@ name: Bump Go
on:
schedule:
- cron: "0 3 * * *" # 3 AM UTC
workflow_dispatch:
permissions:
contents: write
pull-requests: write