aboutsummaryrefslogtreecommitdiff
path: root/.renovaterc
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-02-05 17:10:23 +0300
committerValentin Popov <valentin@popov.link>2026-02-05 17:10:23 +0300
commit6f7a567dea9c165a519ca5246299dc36681fb7b2 (patch)
tree52412d5935b939108d246ea8bcb6fb0a4ed09016 /.renovaterc
parentddd12b30191cb64ac0c90ea98054777a1335279c (diff)
downloadstrapi-plugin-checkbox-list-6f7a567dea9c165a519ca5246299dc36681fb7b2.tar.xz
strapi-plugin-checkbox-list-6f7a567dea9c165a519ca5246299dc36681fb7b2.zip
Add Renovate configuration files for automated dependency management
- Created .renovaterc for Renovate settings, including package rules for digest updates. - Added renovate.config.cjs to define the Renovate bot's GitHub endpoint and author. - Introduced a Gitea workflow in .gitea/workflows/renovate.yml to schedule daily runs of Renovate.
Diffstat (limited to '.renovaterc')
-rw-r--r--.renovaterc30
1 files changed, 30 insertions, 0 deletions
diff --git a/.renovaterc b/.renovaterc
new file mode 100644
index 0000000..bc629bb
--- /dev/null
+++ b/.renovaterc
@@ -0,0 +1,30 @@
+{
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
+ "extends": [
+ "config:recommended",
+ ":disableDependencyDashboard"
+ ],
+ "assignees": [
+ "valentineus"
+ ],
+ "labels": [
+ "dependencies",
+ "automated"
+ ],
+ "packageRules": [
+ {
+ "groupName": "all digest updates",
+ "groupSlug": "all-digest",
+ "matchUpdateTypes": [
+ "minor",
+ "patch",
+ "pin",
+ "digest"
+ ],
+ "matchPackageNames": [
+ "*"
+ ],
+ "automerge": true
+ }
+ ]
+}