From 446f6e00763abaccc5ecf4bf8564d50773593279 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Goldberg=20=E2=9C=A8?= Date: Mon, 30 Dec 2024 11:20:59 -0500 Subject: [PATCH] chore: add .github/renovate.json (#105) ## PR Checklist - [x] Addresses an existing open issue: fixes #90 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/package-json-validator/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Sets up the Renovate config per my standard templating: ignore patch versions, otherwise extend from the recommended settings, and wait a week on new releases. --- .github/renovate.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..6d50b3c --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "automerge": true, + "extends": ["config:best-practices", "replacements:all"], + "ignoreDeps": ["codecov/codecov-action"], + "labels": ["dependencies"], + "minimumReleaseAge": "7 days", + "patch": { "enabled": false }, + "postUpdateOptions": ["pnpmDedupe"] +}