File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 33
33
default : true
34
34
35
35
schedule :
36
- - cron : " 0 0 2-31 * *" # workflow runs every day at midnight UTC except on the first day of the month
36
+ # https://crontab.guru/#0_0_2-31_*_0
37
+ - cron : " 0 0 2-31 * 1-6" # workflow runs at 00:00 on every day-of-month from 2 through 31 and on every day-of-week from Monday through Saturday.
38
+ - cron : " 0 0 2-31 * 0" # workflow runs at 00:00 on every day-of-month from 2 through 31 and on Sunday.
37
39
38
40
concurrency :
39
41
group : ' ${{ github.workflow }}'
71
73
with :
72
74
terraform_version : ${{ matrix.terraform_version }}
73
75
provider_version : ${{ matrix.provider_version }}
74
- atlas_cloud_env : ${{ inputs.atlas_cloud_env }}
76
+ atlas_cloud_env : ${{ inputs.atlas_cloud_env || github.event.schedule == '0 0 2-31 * 0' && 'qa' || 'dev' }}
75
77
76
78
clean-after :
77
79
needs : tests
You can’t perform that action at this time.
0 commit comments