Skip to content

Commit

Permalink
chore(config): migrate config .github/renovate.json5
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and Siroshun09 committed Nov 8, 2024
1 parent 71404a9 commit c2a8a0b
Showing 1 changed file with 29 additions and 25 deletions.
54 changes: 29 additions & 25 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,33 +1,37 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"helpers:pinGitHubActionDigests"
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'config:recommended',
'helpers:pinGitHubActionDigests',
],
"packageRules": [
packageRules: [
{
"groupName": "all non-major dependencies for gh-actions",
"groupSlug": "gha-all-minor-patch",
"matchManagers": ["github-actions"],
"matchPackagePatterns": [
"*"
groupName: 'all non-major dependencies for gh-actions',
groupSlug: 'gha-all-minor-patch',
matchManagers: [
'github-actions',
],
matchUpdateTypes: [
'minor',
'patch',
],
matchPackageNames: [
'*',
],
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"groupName": "all non-major dependencies for go",
"groupSlug": "go-all-minor-patch",
"matchManagers": ["gomod"],
"matchPackagePatterns": [
"*"
groupName: 'all non-major dependencies for go',
groupSlug: 'go-all-minor-patch',
matchManagers: [
'gomod',
],
matchUpdateTypes: [
'minor',
'patch',
],
"matchUpdateTypes": [
"minor",
"patch"
]
}
]
matchPackageNames: [
'*',
],
},
],
}

0 comments on commit c2a8a0b

Please sign in to comment.