1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 21:50:15 +00:00

Added specific directories to Platform and BRE

This commit is contained in:
Todd Martin
2025-02-03 14:03:48 -05:00
parent b6da72b1ab
commit e31fb3dc82

View File

@@ -4,10 +4,22 @@
enabledManagers: ["cargo", "github-actions", "npm"],
packageRules: [
{
// Group all minor updates for GitHub Actions together
// Group all build/test/lint workflows for GitHub Actions together for Platform
// Since they are code owners we don't need to assign a review team in Renovate
groupName: "github-action minor",
matchManagers: ["github-actions"],
matchFileNames: ["workflows/build/**", "workflows/test/**", "workflows/lint/**"],
matchUpdateTypes: ["minor"],
commitMessagePrefix: "[deps] Platform:",
},
{
// Group all release-related workflows for GitHub Actions together for BRE
// Since they are code owners we don't need to assign a review team in Renovate
groupName: "github-action minor",
matchManagers: ["github-actions"],
matchFileNames: ["workflows/release/**"],
matchUpdateTypes: ["minor"],
commitMessagePrefix: "[deps] BRE:",
},
{
// Ignore all patch updates for GitHub Actions