Skip to content

Commit

Permalink
Run Sequester monthly (#2030)
Browse files Browse the repository at this point in the history
This mode runs on all open issues. Any issues that are open, but only in past sprints, are moved to the backlog sprint.
  • Loading branch information
BillWagner authored Mar 7, 2025
1 parent 1278ba7 commit ffc73f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/quest-bulk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: "bulk quest import"
on:
schedule:
- cron: '0 10 * * *' # UTC time, that's 5:00 am EST, 2:00 am PST.
- cron: '0 9 6 * *' # This is the morning of the 6th.
workflow_dispatch:
inputs:
reason:
Expand Down Expand Up @@ -56,4 +57,4 @@ jobs:
org: ${{ github.repository_owner }}
repo: ${{ github.repository }}
issue: '-1'
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || 5 }}
duration: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.duration || github.event.schedule == '0 9 6 * *' && -1 || 5 }}

0 comments on commit ffc73f7

Please sign in to comment.