Skip to content

Commit ed77b75

Browse files
authored
Add a sequester monthly mode. (#45154)
This mode runs once per month on all open issues. That moves issues not slipped but not rescheduled into the backlog sprint.
1 parent 2e7a10d commit ed77b75

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/quest-bulk.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: "bulk quest import"
22
on:
33
schedule:
44
- 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.
6+
57
workflow_dispatch:
68
inputs:
79
reason:
@@ -56,4 +58,4 @@ jobs:
5658
org: ${{ github.repository_owner }}
5759
repo: ${{ github.repository }}
5860
issue: '-1'
59-
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || 5 }}
61+
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || github.event.schedule == '0 9 6 * *' && -1 || 5 }}

0 commit comments

Comments
 (0)