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 70a5f66 commit 47c0215Copy full SHA for 47c0215
2 files changed
.github/dependabot.yml
@@ -4,7 +4,6 @@ updates:
4
- package-ecosystem: "github-actions"
5
directory: "/"
6
schedule:
7
- # Check for updates on Sunday, 8PM UTC
8
- interval: "weekly"
9
- day: "sunday"
10
- time: "20:00"
+ # Check for updates on the first Sunday of every month, 8PM UTC
+ interval: "cron"
+ cronjob: "0 20 * * sun#1"
.github/workflows/pre-commit-update.yml
@@ -2,7 +2,10 @@ name: Update pre-commit
2
3
on:
- - cron: "0 20 * * SUN" # Sunday @ 2000 UTC
+ - cron: "0 20 1-7 * */7" # First Sunday of the month @ 2000 UTC
+ # Reading this expression: At 20:00 on every day-of-month from 1 through 7 if
+ # it's on every 7th day-of-week, i.e. any one of the first seven days of the
+ # month as long as it is a Sunday.
workflow_dispatch:
11
jobs:
0 commit comments