diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8d086e182..03a72b51f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -6,10 +6,3 @@ # Default file owners. * @bitwarden/team-admin-console-dev - -# DevOps for Actions and other workflow changes. -.github/workflows @bitwarden/dept-devops -.github/secrets @bitwarden/dept-devops - -# Multiple Owners -**/package.json \ No newline at end of file diff --git a/.github/renovate.json b/.github/renovate.json index d26b41488..cd722dedf 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,31 +1,17 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base", - "github>bitwarden/renovate-config:pin-actions", - ":combinePatchMinorReleases", - ":dependencyDashboard", - ":maintainLockFilesWeekly", - ":pinAllExceptPeerDependencies", - ":prConcurrentLimit10", - ":rebaseStalePrs", - ":separateMajorReleases", - "group:monorepos", - "schedule:weekends" - ], + "extends": ["github>bitwarden/renovate-config"], "enabledManagers": ["github-actions", "npm"], - "commitMessagePrefix": "[deps]:", - "commitMessageTopic": "{{depName}}", "packageRules": [ { - "groupName": "npm minor", - "matchManagers": ["npm"], + "groupName": "gh minor", + "matchManagers": ["github-actions"], "matchUpdateTypes": ["minor", "patch"] }, { - "matchFileNames": ["package.json"], - "description": "Admin Console owns general dependencies", - "reviewers": ["team:team-admin-console-dev"] + "groupName": "npm minor", + "matchManagers": ["npm"], + "matchUpdateTypes": ["minor", "patch"] } ] }