We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 733c72e commit 2af8f17Copy full SHA for 2af8f17
.github/dependabot.yml
.github/renovate.json5
@@ -0,0 +1,26 @@
1
+{
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:recommended",
5
+ "docker:pinDigests",
6
+ "helpers:pinGitHubActionDigestsToSemver"
7
+ ],
8
+ "packageRules": [
9
+ {
10
+ // reduces the number of Renovate PRs
11
+ // (patch updates are typically non-breaking)
12
+ "groupName": "all patch versions",
13
+ "matchUpdateTypes": ["patch"],
14
+ "schedule": ["before 8am every weekday"]
15
+ },
16
17
+ // avoids these Renovate PRs from trickling in throughout the week
18
+ // (consolidating the review process)
19
+ "matchUpdateTypes": ["minor", "major"],
20
+ "schedule": ["before 8am on Monday"]
21
+ }
22
23
+ "labels": [
24
+ "dependencies"
25
+ ]
26
+}
0 commit comments