Skip to content

Commit a2f6822

Browse files
committed
ci(mutants-weekly): temp push trigger so the workflow runs on this PR
GitHub limits workflow_dispatch and schedule triggers to workflows that already exist on the default branch. Adding a path-filtered push trigger lets us exercise the workflow on this PR before merge. The push: block carries a TEMPORARY marker; remove it before merge.
1 parent a7fba4f commit a2f6822

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/mutants-weekly.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ name: Mutants Weekly
1717
on:
1818
schedule:
1919
- cron: "0 2 * * 0" # 02:00 UTC every Sunday
20+
push:
21+
# TEMPORARY: trigger on push when this file changes, so the workflow
22+
# can be exercised from a PR branch before it lands on main (GitHub's
23+
# workflow_dispatch and schedule both require the file to exist on
24+
# the default branch first). REMOVE this `push:` block before merging
25+
# the PR to main.
26+
paths:
27+
- .github/workflows/mutants-weekly.yml
2028
workflow_dispatch:
2129
inputs:
2230
shard:

0 commit comments

Comments
 (0)