From eb4b2d44060c517ec8c3f36344d3a9376595e33f Mon Sep 17 00:00:00 2001 From: Dafnik Date: Thu, 13 Feb 2025 21:04:45 +0100 Subject: [PATCH] chore: add renovate --- .github/renovate.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..086784e --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,37 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "baseBranches": ["main"], + "enabledManagers": ["github-actions"], + "semanticCommits": "enabled", + "semanticCommitScope": "", + "semanticCommitType": "build", + "commitBody": "See associated pull request for more information.", + "schedule": [ + "after 11:00pm on the 1 day of the month", + "before 4am on the 2 day of the month", + "after 11:00pm on the 15 day of the month", + "before 4am on the 16 day of the month" + ], + "timezone": "Europe/Vienna", + "labels": ["dependencies"], + "assignees": ["Dafnik"], + "packageRules": [ + { + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], + "groupName": "minor-updates", + "matchPackageNames": ["*"] + }, + { + "matchUpdateTypes": ["major"], + "groupName": "major-update" + } + ], + "extends": [ + "config:recommended", + ":pinVersions", + "npm:unpublishSafe", + ":prNotPending", + ":preserveSemverRanges", + ":rebaseStalePrs" + ] +}