Skip to content

Commit a6210df

Browse files
authored
Update quest-bulk.yml (#2774)
Add CRON to run monthly with a larger duration (clean up, so to speak).
1 parent 63823f1 commit a6210df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/quest-bulk.yml

+2-1
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 10 6 * *' # This is the morning of the 6th.
56
workflow_dispatch:
67
inputs:
78
reason:
@@ -57,4 +58,4 @@ jobs:
5758
org: ${{ github.repository_owner }}
5859
repo: ${{ github.repository }}
5960
issue: '-1'
60-
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 10 6 * *' && -1 || 5 }}

0 commit comments

Comments
 (0)