Skip to content
Open
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
9 changes: 4 additions & 5 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"group:recommended",
"config:recommended",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The config:recommended preset already includes group:recommended and enables semanticCommits by default. Since you are migrating to this preset, the explicit entries for group:recommended (line 5) and "semanticCommits": "enabled" (line 9) are now redundant. Removing them would simplify the configuration and follow the best practice of keeping Renovate configurations minimal.

"helpers:pinGitHubActionDigests"
],
"ignorePaths": [],
"semanticCommits": "enabled",
"labels": [
"renovate"
],
Expand Down Expand Up @@ -39,7 +37,7 @@
"extractVersion": "^flagd-proxy/(?<version>.*?)$"
}
],
"regexManagers": [
"customManagers": [
{
"fileMatch": [
"(^|\\/)Makefile$",
Expand All @@ -52,7 +50,8 @@
"matchStrings": [
"(#|\\/\\/) renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)\\s.*?(?<separator>\\??=|\\: ?) ?\\\"?(?<currentValue>.+?)?\\\"?\\s",
"(#|\\/\\/) renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)\\s.*?default:\"(?<currentValue>.+?)\""
]
],
"customType": "regex"
}
]
}
Loading