We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2bd3d commit 50332d5Copy full SHA for 50332d5
.github/workflows/nightly.yml
@@ -12,7 +12,8 @@ on:
12
- '.github/workflows/base.yml'
13
- '.github/workflows/base-windows.yml'
14
schedule:
15
- - cron: '15 0 * * *'
+ # Don't run on weekends as merges are infrequent
16
+ - cron: '15 0 * * 2-6'
17
workflow_dispatch:
18
19
# The following aims to reduce CI CPU cycles by:
.github/workflows/weekly.yml
- - cron: '15 0 * * 6'
+ # Run at 00:00 on Sundays
+ - cron: '0 0 * * 0'
0 commit comments