-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into kgsappington/distributed-ingester-hpa
- Loading branch information
Showing
166 changed files
with
24,611 additions
and
1,560 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
{ | ||
"$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": [ | ||
"*" | ||
] | ||
}, | ||
{ | ||
// Disable Go version updates | ||
"matchManagers": ["gomod"], | ||
"matchPackageNames": ["go"], | ||
"enabled": false | ||
}, | ||
{ | ||
// Disable Go and loki-build-image updates for Dockerfiles | ||
"matchManagers": ["dockerfile"], | ||
"matchPackageNames": ["golang", "grafana/loki-build-image"], | ||
"enabled": false | ||
}, | ||
{ | ||
// Don't automatically merge GitHub Actions updates | ||
"matchManagers": ["github-actions"], | ||
"enabled": true, | ||
"matchUpdateTypes": ["major", "minor", "patch"], | ||
"autoApprove": false, | ||
"automerge": false | ||
}, | ||
{ | ||
// Separate out Helm updates from other dependencies | ||
// Don't automatically merge Helm updates | ||
// Updates to this require the docs to be updated | ||
"matchManagers": ["helm-requirements", "helm-values", "helmv3"], | ||
"groupName": "helm-{{packageName}}", | ||
"matchUpdateTypes": ["major", "minor", "patch"], | ||
"autoApprove": false, | ||
"automerge": false | ||
}, | ||
{ | ||
// Separate out lambda-promtail updates from other dependencies | ||
// Don't automatically merge lambda-promtail updates | ||
// Updates to this require the nix SHA to be updated | ||
"matchFileNames": ["tools/lambda-promtail/go.mod"], | ||
"groupName": "lambdapromtail-{{packageName}}", | ||
"enabled": true, | ||
"matchUpdateTypes": ["major", "minor", "patch"], | ||
"autoApprove": false, | ||
"automerge": false | ||
}, | ||
{ | ||
// Disable operator updates | ||
"matchFileNames": ["operator/go.mod", "operator/api/loki/go.mod"], | ||
"enabled": false, | ||
"autoApprove": false, | ||
"automerge": false | ||
}, | ||
{ | ||
// Enable all other updates | ||
"matchFileNames": ["!tools/lambda-promtail/go.mod", "!operator/go.mod", "!operator/api/loki/go.mod"], | ||
"groupName": "{{packageName}}", | ||
"enabled": true, | ||
"matchUpdateTypes": ["major", "minor", "patch"], | ||
// After we have tested the above configuration, we can enable the following | ||
"automerge": false, | ||
"autoApprove": false | ||
} | ||
], | ||
"digest": { | ||
"enabled": false | ||
}, | ||
"vulnerabilityAlerts": { | ||
"enabled": true, | ||
"addLabels": [ | ||
"area/security" | ||
] | ||
}, | ||
"osvVulnerabilityAlerts": true, | ||
"prConcurrentLimit": 10, | ||
"rebaseWhen": "conflicted", | ||
"branchPrefix": "deps-update/", | ||
"postUpdateOptions": [ | ||
"gomodTidy" | ||
], | ||
"semanticCommitType": "fix", | ||
"semanticCommitScope": "deps" | ||
} |
146 changes: 146 additions & 0 deletions
146
.github/vendor/github.com/grafana/loki-release/workflows/build.libsonnet
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.