Skip to content

Commit 764dddf

Browse files
committed
ci: switch probe trigger to any push on ci-probe-rate-limit branch
Removes the paths filter so empty commits also fire the workflow. Lets an external hourly cron drive snapshots without merging the workflow to main.
1 parent 2132759 commit 764dddf

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/probe-rate-limit.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ name: Probe API Rate Limit
1010

1111
on:
1212
workflow_dispatch:
13-
# Also runs on any push that touches this file. Lets us probe from a
14-
# feature branch before the file lands on the default branch (which
15-
# is required for plain workflow_dispatch). Remove once merged to main.
13+
# Triggers on any push to the probe branch (including empty commits).
14+
# Used to drive an external hourly cadence before the workflow lands
15+
# on the default branch (where the schedule trigger would take over).
1616
push:
17-
paths:
18-
- .github/workflows/probe-rate-limit.yml
17+
branches:
18+
- ci-probe-rate-limit
1919
# Hourly snapshot of the GITHUB_TOKEN bucket. Schedule events only
2020
# fire workflows from the default branch, so this only runs once
2121
# this file is on `main`. 24 hourly runs is enough to characterize

0 commit comments

Comments
 (0)