Update renovate config (#2106)

This commit is contained in:
Trask Stalnaker 2025-04-15 06:59:45 -07:00 committed by GitHub
parent 8e60862e0b
commit dee46498f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 26 additions and 28 deletions

View File

@ -1,20 +0,0 @@
version: 2
updates:
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
- package-ecosystem: "github-actions"
directory: ".github"
schedule:
interval: "weekly"
day: "sunday"
- package-ecosystem: "gomod"
directory: "internal/tools"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"

26
.github/renovate.json5 vendored Normal file
View File

@ -0,0 +1,26 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"docker:pinDigests",
"helpers:pinGitHubActionDigestsToSemver"
],
"packageRules": [
{
// reduces the number of Renovate PRs
// (patch updates are typically non-breaking)
"groupName": "all patch versions",
"matchUpdateTypes": ["patch"],
"schedule": ["before 8am every weekday"]
},
{
// avoids these Renovate PRs from trickling in throughout the week
// (consolidating the review process)
"matchUpdateTypes": ["minor", "major"],
"schedule": ["before 8am on Monday"]
}
],
"labels": [
"dependencies"
]
}

View File

@ -1,8 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"docker:pinDigests",
"helpers:pinGitHubActionDigests"
]
}