Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(config): migrate renovate config #129

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 37 additions & 38 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,49 +1,48 @@
{
"extends": [
"config:base", // https://docs.renovatebot.com/presets-config/#configbase
":semanticCommits", // https://docs.renovatebot.com/presets-default/#semanticcommits
":ignoreUnstable", // https://docs.renovatebot.com/presets-default/#ignoreunstable
"group:allNonMajor", // https://docs.renovatebot.com/presets-group/#groupallnonmajor
":separateMajorReleases", // https://docs.renovatebot.com/presets-default/#separatemajorreleases
":prConcurrentLimitNone", // View complete backlog as PRs. https://docs.renovatebot.com/presets-default/#prconcurrentlimitnone
":prHourlyLimitNone", // https://docs.renovatebot.com/presets-default/#prhourlylimitnone
":preserveSemverRanges",
extends: [
'config:recommended',
':semanticCommits',
':ignoreUnstable',
'group:allNonMajor',
':separateMajorReleases',
':prConcurrentLimitNone',
':prHourlyLimitNone',
':preserveSemverRanges',
],
"ignorePaths": [".kokoro/**"],

// Give ecosystem time to catch up.
// npm allows maintainers to unpublish a release up to 3 days later.
// https://docs.renovatebot.com/configuration-options/#minimumreleaseage
"minimumReleaseAge": "3",

// Create PRs, but do not update them without manual action.
// Reduces spurious retesting in repositories that have many PRs at a time.
// https://docs.renovatebot.com/configuration-options/#rebasewhen
"rebaseWhen": "never",

// Organizational processes.
// https://docs.renovatebot.com/configuration-options/#dependencydashboardlabels
"dependencyDashboardLabels": [
"type: process",
ignorePaths: [
'.kokoro/**',
],
"packageRules": [

minimumReleaseAge: '3',
rebaseWhen: 'never',
dependencyDashboardLabels: [
'type: process',
],
packageRules: [
{
"groupName": "GitHub Actions",
"matchManagers": ["github-actions"],
"pinDigests": true,
groupName: 'GitHub Actions',
matchManagers: [
'github-actions',
],
pinDigests: true,
},

// Python Specific
{
"matchPackageNames": ["pytest"],
"matchUpdateTypes": ["minor", "major"]
matchPackageNames: [
'pytest',
],
matchUpdateTypes: [
'minor',
'major',
],
},
{
"groupName": "python-nonmajor",
"matchLanguages": ["python"],
"matchUpdateTypes": ["minor", "patch"],
groupName: 'python-nonmajor',
matchCategories: [
'python',
],
matchUpdateTypes: [
'minor',
'patch',
],
},

],
}
Loading