Skip to content

Commit 3b77611

Browse files
authored
stagger times for Sequester (#45593)
Run this action in different repositories based on [this table](https://github.com/dotnet/docs-tools/tree/main/actions/sequester#staggering-times). That helps us avoid being rate limited in one of our REST APIs
1 parent 53e51b7 commit 3b77611

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/quest-bulk.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: "bulk quest import"
22
on:
33
schedule:
4-
- cron: '0 10 * * *' # UTC time, that's 5:00 am EST, 2:00 am PST.
5-
- cron: '0 9 6 * *' # This is the morning of the 6th.
4+
- cron: '0 7 1-5,7-31 * *' # UTC time, that's 2:00 am EST, 11:00 pm PST.
5+
- cron: '0 7 6 * *' # This is the morning of the 6th.
66

77
workflow_dispatch:
88
inputs:
@@ -58,4 +58,4 @@ jobs:
5858
org: ${{ github.repository_owner }}
5959
repo: ${{ github.repository }}
6060
issue: '-1'
61-
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || github.event.schedule == '0 9 6 * *' && -1 || 5 }}
61+
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || github.event.schedule == '0 7 6 * *' && -1 || 5 }}

0 commit comments

Comments
 (0)