diff options
| author | Valentin Popov <valentin@popov.link> | 2026-01-30 16:24:32 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-01-30 16:24:32 +0300 |
| commit | ff28f7d12cf0d21835b3d1cc7ca9eed8ae9fcb56 (patch) | |
| tree | adae4f9a4033507cc85b126cac75171a33b85189 /.renovaterc | |
| parent | 91ba9ddbc220dbc0904e717176c24af80388f337 (diff) | |
| download | popov.link-ff28f7d12cf0d21835b3d1cc7ca9eed8ae9fcb56.tar.xz popov.link-ff28f7d12cf0d21835b3d1cc7ca9eed8ae9fcb56.zip | |
chore: add Renovate configuration and workflows
- Introduced .renovaterc for Renovate settings.
- Added renovate.config.cjs for Gitea integration.
- Created .gitea/workflows/renovate.yml for daily Renovate runs.
- Added .gitea/workflows/test.yml for CI testing.
- Removed outdated GitHub workflows and configuration files.
Diffstat (limited to '.renovaterc')
| -rw-r--r-- | .renovaterc | 30 |
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 + } + ] +} |
