Skip to content

Commit

Permalink
fix(config): migrate renovate config (#14646)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 29, 2024
1 parent 2e62abb commit a67d8ef
Showing 1 changed file with 48 additions and 34 deletions.
82 changes: 48 additions & 34 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,50 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"labels": ["dependencies"],
"prHourlyLimit": 4,
"baseBranches": ["main"],
"packageRules": [
{
"matchBaseBranches": ["release-2.9.x","release-2.8.x"],
"packagePatterns": ["*"],
"enabled": false
},
{
"matchFileNames": [ "operator/go.mod" ],
"matchPackageNames": [
"github.com/grafana/loki",
"github.com/grafana/loki/operator/api/loki"
],
"enabled": false
}
],
"vulnerabilityAlerts": {
"enabled": true,
"addLabels": ["area/security"]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"labels": [
"dependencies"
],
"prHourlyLimit": 4,
"baseBranches": [
"main"
],
"packageRules": [
{
"matchBaseBranches": [
"release-2.9.x",
"release-2.8.x"
],
"enabled": false,
"matchPackageNames": [
"*"
]
},

"osvVulnerabilityAlerts": true,
"prConcurrentLimit": 10,
"rebaseWhen": "conflicted",
"branchPrefix": "deps-update/",
"postUpdateOptions": ["gomodTidy"],
"semanticCommitType": "fix",
"semanticCommitScope": "deps"
}
{
"matchFileNames": [
"operator/go.mod"
],
"matchPackageNames": [
"github.com/grafana/loki",
"github.com/grafana/loki/operator/api/loki"
],
"enabled": false
}
],
"vulnerabilityAlerts": {
"enabled": true,
"addLabels": [
"area/security"
]
},
"osvVulnerabilityAlerts": true,
"prConcurrentLimit": 10,
"rebaseWhen": "conflicted",
"branchPrefix": "deps-update/",
"postUpdateOptions": [
"gomodTidy"
],
"semanticCommitType": "fix",
"semanticCommitScope": "deps"
}

0 comments on commit a67d8ef

Please sign in to comment.