1 Commits
Author SHA1 Message Date
hh 279fffb2ce feat: ship renovate.jsonc extending the shared preset 2026-09-10 16:06:02 +00:00
2 changed files with 11 additions and 0 deletions
+7
View File
@@ -11,6 +11,13 @@ A part is a directory with:
Application services carry the `services` profile, databases and other infrastructure carry `external`. 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 <org>/<repo>` creates them).
```sh ```sh
copier copy --trust -d layout=parts -d 'parts=["backend","frontend"]' <this-repo> <dest> copier copy --trust -d layout=parts -d 'parts=["backend","frontend"]' <this-repo> <dest>
copier update -a .copier/infra.yml copier update -a .copier/infra.yml
+4
View File
@@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>templates/renovate"]
}