use rennovate

This commit is contained in:
Richard Ward
2025-12-19 00:18:03 +00:00
parent dd187d4df7
commit 4f69706880
2 changed files with 21 additions and 0 deletions

View File

@@ -27,3 +27,7 @@ cmake --build build --target spinning_cube
```
If you need the Conan runtime environment (e.g., because dependencies set env vars), source `build/conanrun.sh` before launching the binary on Linux/macOS or run `build\\conanrun.bat` on Windows.
## Dependency automation
This project ships a `renovate.json` configuration so Renovate can open PRs that bump the Conan packages listed in `conanfile.py`. Either install Renovate locally (`npm install -g renovate` or `npx renovate`) and run it from the repo root, or enable the Renovate bot on your GitHub/GitLab install to pick up the configuration automatically.

17
renovate.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": ["config:base"],
"enabledManagers": ["conan"],
"conan": {
"enabled": true
},
"packageRules": [
{
"matchDatasources": ["conan"],
"groupName": "all Conan dependencies",
"automerge": true,
"automergeType": "branch"
}
],
"prConcurrentLimit": 5,
"timezone": "UTC"
}