From: Jérôme Benoit Date: Sun, 16 Nov 2025 23:12:30 +0000 (+0100) Subject: chore: switch to renovate X-Git-Tag: v5.2.0~86 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=0556796fbc075083b05c6452e77a17f9bfd83ab1;p=poolifier.git chore: switch to renovate Signed-off-by: Jérôme Benoit --- diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index b0ddc1b21..000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,58 +0,0 @@ -# Docs: https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates -version: 2 -updates: - - package-ecosystem: 'github-actions' - directory: '/' - schedule: - interval: 'daily' - labels: - - 'github-actions' - - package-ecosystem: 'npm' - directory: '/' - schedule: - interval: 'daily' - groups: - regular: - update-types: - - 'patch' - - 'minor' - exclude-patterns: - - 'typescript' - typescript: - update-types: - - 'patch' - - 'minor' - - 'major' - patterns: - - 'typescript' - eslint: - update-types: - - 'major' - patterns: - - 'eslint' - - '@eslint/*' - commitlint: - patterns: - - '@commitlint/*' - labels: - - 'dependencies' - versioning-strategy: increase - - package-ecosystem: 'npm' - directories: - - '/examples/typescript/*' - - '/examples/typescript/http-server-pool/*' - - '/examples/typescript/websocket-server-pool/*' - schedule: - interval: 'daily' - groups: - regular: - update-types: - - 'patch' - - 'minor' - major: - update-types: - - 'major' - labels: - - 'dependencies' - - 'examples' - versioning-strategy: increase diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000..90a40277a --- /dev/null +++ b/renovate.json @@ -0,0 +1,16 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended", "group:allNonMajor", "schedule:daily"], + "lockFileMaintenance": { + "enabled": true + }, + "ignorePaths": [ + "**/node_modules/**", + "**/bower_components/**", + "**/vendor/**", + "**/__tests__/**", + "**/test/**", + "**/tests/**", + "**/__fixtures__/**" + ] +}