Various code quality improvements and fixes: - Settings: return error instead of auto-creating unknown settings - PagerDuty: proper backoff timing with to_timeout() - Gaiia sync: remove unnecessary transaction wrapper - HTTP/UISP: simplify test plug setup - Agent channel: tagged tuple config for check types - SNMP: fix Task.yield/shutdown pattern, remove stale preload - Discovery: simplify error handling - Tests: bump executor timeouts for CI reliability - Dockerfile: remove unnecessary --force compile - Renovate/CI: config cleanup Split from #135. Reviewed-on: graham/towerops-web#139
64 lines
1.3 KiB
JSON
64 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
|
|
"branchPrefix": "renovate/",
|
|
"semanticCommits": "enabled",
|
|
"dependencyDashboard": true,
|
|
"labels": [
|
|
"dependencies"
|
|
],
|
|
"schedule": [
|
|
"at any time"
|
|
],
|
|
"timezone": "UTC",
|
|
"prConcurrentLimit": 10,
|
|
"prCreation": "immediate",
|
|
"automerge": false,
|
|
"rangeStrategy": "bump",
|
|
"separateMajorMinor": true,
|
|
"separateMinorPatch": false,
|
|
"packageRules": [
|
|
{
|
|
"description": "Elixir dependencies",
|
|
"matchManagers": [
|
|
"mix"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"major",
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"groupName": null,
|
|
"commitMessagePrefix": "chore(deps):"
|
|
},
|
|
{
|
|
"description": "Docker dependencies",
|
|
"matchManagers": [
|
|
"dockerfile"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"major",
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"groupName": null,
|
|
"commitMessagePrefix": "chore(deps):"
|
|
},
|
|
{
|
|
"description": "GitHub Actions",
|
|
"matchManagers": [
|
|
"github-actions"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"major",
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"groupName": null,
|
|
"commitMessagePrefix": "chore(deps):"
|
|
}
|
|
]
|
|
}
|