diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml deleted file mode 100644 index e557ad2..0000000 --- a/.github/dependabot.yaml +++ /dev/null @@ -1,19 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - groups: - github-actions: - patterns: - - "*" - - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "weekly" - groups: - npm: - patterns: - - "*" diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..d349690 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "timezone": "America/Chicago", + "schedule": ["before 06:00 on monday"], + "packageRules": [ + { + "matchManagers": ["github-actions"], + "groupName": "github-actions", + "commitMessagePrefix": "ci:" + }, + { + "matchManagers": ["bun"], + "groupName": "bun dependencies", + "commitMessagePrefix": "chore(deps):" + } + ] +}