From 4aa64670a3e1a8b2db47798cbd25e6828d7b2c56 Mon Sep 17 00:00:00 2001 From: Tatiane Tosta Date: Thu, 14 Sep 2023 18:38:29 +0000 Subject: [PATCH] chore: migrate renovate config and group github deps --- .github/renovate.json | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 5f3fb015..05f4ba03 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,6 +1,6 @@ { "extends": [ - "config:base", + "config:recommended", ":semanticCommitTypeAll(chore)", "helpers:pinGitHubActionDigests" ], @@ -8,10 +8,28 @@ "ignorePresets": [":semanticPrefixFixDepsChoreOthers"], "ignorePaths": [".kokoro/requirements.txt"], "prConcurrentLimit": 0, - "rebaseStalePrs": true, + "rebaseWhen": "behind-base-branch", "dependencyDashboard": true, - "semanticCommits": false, + "semanticCommits": "disabled", "pip_requirements": { "fileMatch": ["requirements-test.txt"] - } + }, + "packageRules": [ + { + "matchPackagePatterns": [ + "^actions/checkout", + "^actions/github-script", + "^actions/setup-python", + "^actions/upload-artifact", + "^dorny/paths-filter", + "^github/codeql-action", + "^google-github-actions/auth", + "^google-github-actions/get-secretmanager-secrets", + "^google-github-actions/setup-gcloud", + "^micnncim/action-label-syncer", + "^ossf/scorecard-action" + ], + "groupName": "dependencies for github" + } + ] }