Skip to content

Commit 6a3e8e1

Browse files
committed
Add monthly cron job
This addition runs Sequester once per month to process all open issues. In that mode, it moves any open issues that haven't been rescheduled into the "backlog" sprint in Azure DevOps.
1 parent e242ba8 commit 6a3e8e1

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,4 +50,4 @@ 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 }}

0 commit comments

Comments
 (0)