From 5eb41700bb4370ae6903a771d378a87c554d42b7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 17:00:14 +0100 Subject: [PATCH] chore(config): migrate config .renovaterc.json (#242) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> [skip ci] --- .renovaterc.json | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/.renovaterc.json b/.renovaterc.json index 7e4974f2..06c70de5 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -1,24 +1,39 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:best-practices", "group:allNonMajor"], + "extends": [ + "config:best-practices", + "group:allNonMajor" + ], "ignoreDeps": [ "docker.io/library/postgres", "postgresql", "docker.io/bitnami/postgresql", "ghcr.io/miracum/recruit/*" ], - "ignorePaths": ["**/node_modules/**", "**/bower_components/**", "fhir/**"], + "ignorePaths": [ + "**/node_modules/**", + "**/bower_components/**", + "fhir/**" + ], "pip-compile": { - "fileMatch": ["(^|/|\\.)requirements\\.in$"] + "fileMatch": [ + "(^|/|\\.)requirements\\.txt$" + ] }, "packageRules": [ { - "matchManagers": ["github-actions"], + "matchManagers": [ + "github-actions" + ], "groupName": "github-actions" }, { - "matchManagers": ["github-actions"], - "matchPackageNames": ["slsa-framework/slsa-github-generator"], + "matchManagers": [ + "github-actions" + ], + "matchPackageNames": [ + "slsa-framework/slsa-github-generator" + ], "pinDigests": false } ]