From bc4438fbfdb3f7e06ef2e342d8c706c45afbf2cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Thu, 29 Jun 2023 23:56:24 +0200 Subject: [PATCH 1/2] Remove dependabot --- .github/dependabot.yaml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml deleted file mode 100644 index 26938a89..00000000 --- a/.github/dependabot.yaml +++ /dev/null @@ -1,16 +0,0 @@ -version: 2 -updates: - - package-ecosystem: github-actions - directory: / - schedule: - interval: weekly - labels: - - ci - - github-actions - - package-ecosystem: pip - directory: / - schedule: - interval: weekly - labels: - - pip - - dependencies From 76bcb042ba484246e24676ab7b0c6fdf8306c0b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Fri, 30 Jun 2023 00:31:36 +0200 Subject: [PATCH 2/2] Add renovate config --- .github/renovate.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000..354bba68 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,26 @@ +{ + "extends": [ + "config:base", + ":dependencyDashboard", + ":timezone(Etc/UTC)", + ":preserveSemverRanges" + ], + "internalChecksFilter": "strict", + "rebaseWhen": "conflicted", + "packageRules": [ + { + "description": "Add the ci and github-actions GitHub label to GitHub Action bump PRs", + "matchManagers": ["github-actions"], + "labels": ["ci", "github-actions"] + }, + { + "description": "Add the ci and github-actions GitHub label to GitHub Action bump PRs", + "matchManagers": ["pip_requirements"], + "labels": ["pip", "dependencies"] + } + + ], + "pip_requirements": { + "fileMatch": ["requirements(-[a-z0-9]+)?\\.txt$"] + } +} \ No newline at end of file