From 07ac73dcb29ade8286c5d756f965cbfab5458bd5 Mon Sep 17 00:00:00 2001 From: Thomas SharedInbox Date: Sun, 24 May 2026 17:57:04 +0200 Subject: [PATCH] feat: add Renovate Bot configuration (#216) Adds renovate.json to enable automated dependency updates for pub (pubspec.yaml), Dockerfile, and Forgejo Actions workflows. The github-actions manager fileMatch is extended to cover .forgejo/workflows/ in addition to the default .github/ path. Co-Authored-By: Claude Sonnet 4.6 --- renovate.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..52914a2 --- /dev/null +++ b/renovate.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "labels": ["dependencies"], + "github-actions": { + "fileMatch": ["^\\.forgejo/workflows/[^/]+\\.ya?ml$"] + } +}