diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 1b51015..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,15 +0,0 @@ -version: 2 -updates: - - package-ecosystem: npm - directory: / - schedule: - interval: weekly - open-pull-requests-limit: 10 - ignore: - - dependency-name: "@types/node" - update-types: ["version-update:semver-major"] - - - package-ecosystem: github-actions - directory: / - schedule: - interval: weekly diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..c2cfabe --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + "schedule:weekly", + "group:allNonMajor", + ":semanticCommitTypeAll(fix)", + ":semanticCommitScopeDisabled" + ], + "minimumReleaseAge": "1 day", + "packageRules": [ + { + "description": "Group all GitHub Actions bumps into one PR", + "matchManagers": ["github-actions"], + "groupName": "github-actions" + }, + { + "description": "Keep @types/node on the major matching the supported Node engine", + "matchPackageNames": ["@types/node"], + "matchUpdateTypes": ["major"], + "enabled": false + } + ] +}