Skip to content

Commit 733566c

Browse files
authored
Add monthly cron job (#34911)
Run Sequester monthly to catch all open issues that are still open. This will move them to the latest planned sprint, or the "backlog" sprint.
1 parent f855631 commit 733566c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/quest-bulk.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ 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.
56
workflow_dispatch:
67
inputs:
78
reason:
@@ -49,5 +50,5 @@ jobs:
4950
org: ${{ github.repository_owner }}
5051
repo: ${{ github.repository }}
5152
issue: '-1'
52-
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || 5 }}
53+
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || github.event.schedule == '0 9 6 * *' && -1 || 5 }}
5354

0 commit comments

Comments
 (0)