Skip to content

Commit 74f153b

Browse files
authored
Switch backfill-workflow-job from cron schedule to manual dispatch (#8177)
**Impact:** CI data backfill pipeline (DynamoDB + ClickHouse) **Risk:** low ## What Replaces the every-5-minute cron schedule on the backfill-workflow-job workflow with `workflow_dispatch`, making it manual-trigger only. ## Why The cron-based CI schedule is unreliable and in practice only runs roughly every hour despite being configured for every 5 minutes. Switching to manual dispatch avoids the false sense of regular execution and lets operators trigger backfills on demand when actually needed. see meta-pytorch/pytorch-gha-infra#1217 Signed-off-by: Jean Schmidt <contato@jschmidt.me>
1 parent 75ece28 commit 74f153b

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/backfill-workflow-job.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
name: Backfill workflow jobs in DynamoDB and ClickHouse
22

33
on:
4-
schedule:
5-
# Every 5 minutes
6-
- cron: "*/5 * * * *"
4+
workflow_dispatch:
75

86
permissions:
97
id-token: write

0 commit comments

Comments
 (0)