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:
parent
0f04a4815f
commit
35828f44cd
1 changed files with 1 additions and 0 deletions
1
.github/workflows/bump-go.yml
vendored
1
.github/workflows/bump-go.yml
vendored
|
|
@ -2,6 +2,7 @@ name: Bump Go
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 3 * * *" # 3 AM UTC
|
||||
workflow_dispatch:
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue