mirror of
https://github.com/bitwarden/browser
synced 2026-01-30 16:23:53 +00:00
🔧 chore: add Docker support to Renovate configuration
Enable dockerfile and docker-compose managers in Renovate and add package rules to group minor and patch updates for Docker-related dependencies, consistent with existing cargo configuration.
This commit is contained in:
12
.github/renovate.json5
vendored
12
.github/renovate.json5
vendored
@@ -1,7 +1,7 @@
|
||||
{
|
||||
$schema: "https://docs.renovatebot.com/renovate-schema.json",
|
||||
extends: ["github>bitwarden/renovate-config"], // Extends our default configuration for pinned dependencies
|
||||
enabledManagers: ["cargo", "github-actions", "npm"],
|
||||
enabledManagers: ["cargo", "dockerfile", "docker-compose", "github-actions", "npm"],
|
||||
packageRules: [
|
||||
{
|
||||
// Group all Github Action minor updates together to reduce PR noise.
|
||||
@@ -10,6 +10,16 @@
|
||||
matchUpdateTypes: ["minor"],
|
||||
addLabels: ["hold"],
|
||||
},
|
||||
{
|
||||
groupName: "dockerfile minor",
|
||||
matchManagers: ["dockerfile"],
|
||||
matchUpdateTypes: ["minor", "patch"],
|
||||
},
|
||||
{
|
||||
groupName: "docker-compose minor",
|
||||
matchManagers: ["docker-compose"],
|
||||
matchUpdateTypes: ["minor", "patch"],
|
||||
},
|
||||
{
|
||||
// Enable support for Rust toolchain updates.
|
||||
matchManagers: ["custom.regex"],
|
||||
|
||||
Reference in New Issue
Block a user