We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e678be commit c40380cCopy full SHA for c40380c
.github/workflows/cron-checks.yml
@@ -2,8 +2,14 @@ name: Cron Checks
2
3
on:
4
schedule:
5
- # Runs "At 03:00 every night"
6
- - cron: '0 3 * * *'
+ # Runs "At 02:00 every night"
+ - cron: '0 2 * * *'
7
+
8
+ workflow_dispatch:
9
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
14
env:
15
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI
0 commit comments