From 98e4aa4f0c9a2bd81b2659dda9edd91a0117293c Mon Sep 17 00:00:00 2001 From: Jonghyeon Ko Date: Sun, 5 Nov 2023 12:15:40 +0900 Subject: [PATCH] chore(renovate): initialization (#290) fix #288 # Overview I configured renovate bot to remove painful efforts to update dependencies ## PR Checklist - [x] I did below actions if need 1. I read the [Contributing Guide](https://github.com/suspensive/react/blob/main/CONTRIBUTING.md) 2. I added documents and tests. --- .github/renovate.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 000000000..68ced7056 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base", ":semanticCommitTypeAll(ci)"], + "labels": ["renovate"], + "reviewersFromCodeOwners": true, + "nvm": { + "fileMatch": ["(^|/)\\.nvmrc$"], + "versioning": "node", + "pinDigests": false + }, + "github-actions": { + "fileMatch": ["^(workflow-templates|\\.(?:github|gitea|forgejo)/workflows)/[^/]+\\.ya?ml$", "(^|/)action\\.ya?ml$"] + }, + "baseBranches": ["main"] +}