From 08f8f7425bc56270975ff812b6094cc1f3252168 Mon Sep 17 00:00:00 2001 From: Fuxing Loh <4266087+fuxingloh@users.noreply.github.com> Date: Fri, 23 Sep 2022 13:10:10 +0800 Subject: [PATCH] chore: add renovate.json (#162) As per the title. --- .github/PULL_REQUEST_TEMPLATE.md | 14 ++++++++++++++ .github/renovate.json | 24 ++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/renovate.json diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..bdabd2d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,14 @@ + + +#### What this PR does / why we need it: + +#### Which issue(s) does this PR fixes?: + + + +Fixes # + +#### Additional comments?: diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..55e86c6 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base", + "helpers:pinGitHubActionDigests", + ":semanticCommitTypeAll(bump)" + ], + "dependencyDashboard": true, + "dependencyDashboardAutoclose": false, + "major": { + "dependencyDashboardApproval": true + }, + "rangeStrategy": "bump", + "packageRules": [ + { + "matchPackagePatterns": ["eslint"], + "groupName": "eslint" + }, + { + "matchPackagePatterns": ["jest"], + "groupName": "jest" + } + ] +}