From 279fffb2ce0df4c362b636a3333afca23a550c5a Mon Sep 17 00:00:00 2001 From: h Date: Thu, 10 Sep 2026 16:06:02 +0000 Subject: [PATCH] feat: ship renovate.jsonc extending the shared preset --- README.md | 7 +++++++ template/renovate.jsonc | 4 ++++ 2 files changed, 11 insertions(+) create mode 100644 template/renovate.jsonc diff --git a/README.md b/README.md index 0e99d4e..2e1181e 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,13 @@ A part is a directory with: Application services carry the `services` profile, databases and other infrastructure carry `external`. +The root also gets a `renovate.jsonc` that is nothing but an `extends` on the +shared preset in `templates/renovate`. It does not subscribe the repo to +anything on its own: the bot walks an explicit list, so a new repo still has to +be added to `repositories` in `projects/personal/renovate/renovate-config.js` +of `infra/komodo`, and needs the `renovate`, `wait-3d` and `deps-code` labels +(`giteaproject /` creates them). + ```sh copier copy --trust -d layout=parts -d 'parts=["backend","frontend"]' copier update -a .copier/infra.yml diff --git a/template/renovate.jsonc b/template/renovate.jsonc new file mode 100644 index 0000000..25ddea3 --- /dev/null +++ b/template/renovate.jsonc @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["local>templates/renovate"] +}