Stabilize Renovate manager scope and remove OSV fetch
Some checks failed
CICD / Build and Publish CICD Base Image (pull_request) Successful in 31s
CICD / Build and Publish CICD Base Image (push) Successful in 49s
CICD / Build and Push CICD Image (pull_request) Failing after 11m57s
CICD / Build and Push CICD Image (push) Successful in 1h17m41s
CICD / Build CICD Image Failure Postmortem (push) Failing after 14m6s
CICD / Pre-commit Checks (push) Successful in 7m30s
CICD / Frontend Tests (push) Successful in 1m55s
CICD / Backend Tests (push) Successful in 9m42s
CICD / Backend Doctests (push) Successful in 50s
CICD / CICD Tests Complete (push) Successful in 19s
CICD / Source Lanes Failure Postmortem (push) Has been skipped
CICD / Build Backend Base Image (push) Successful in 3m40s
CICD / Build Frontend Base Image (push) Successful in 15m41s
CICD / Build Integration Tester Image (push) Failing after 12m2s
CICD / Build Backend Main Image (push) Successful in 5m33s
CICD / Build Frontend Main Image (push) Successful in 4m0s
CICD / Build E2E Tester Image (push) Successful in 19m0s
CICD / Production Image Failures Postmortem (push) Successful in 19s
CICD / Production Images Complete (push) Failing after 34s
CICD / Runtime Black-Box Integration Tests (push) Has been skipped
CICD / End-to-End Tests (push) Has been skipped
CICD / Integration Tests Failure Postmortem (push) Has been skipped
CICD / E2E Tests Failure Postmortem (push) Has been skipped
CICD / Build CICD Image Failure Postmortem (pull_request) Has been cancelled
CICD / Backend Tests (pull_request) Has been cancelled
CICD / Pre-commit Checks (pull_request) Has been cancelled
CICD / Frontend Tests (pull_request) Has been cancelled
CICD / Backend Doctests (pull_request) Has been cancelled
CICD / CICD Tests Complete (pull_request) Has been cancelled
CICD / Build Backend Base Image (pull_request) Has been cancelled
CICD / Build Frontend Base Image (pull_request) Has been cancelled
CICD / Build Integration Tester Image (pull_request) Has been cancelled
CICD / Build E2E Tester Image (pull_request) Has been cancelled
CICD / Build Backend Main Image (pull_request) Has been cancelled
CICD / Build Frontend Main Image (pull_request) Has been cancelled
CICD / Production Images Complete (pull_request) Has been cancelled
CICD / Production Image Failures Postmortem (pull_request) Has been cancelled
CICD / Source Lanes Failure Postmortem (pull_request) Has been cancelled
CICD / Runtime Black-Box Integration Tests (pull_request) Has been cancelled
CICD / Integration Tests Failure Postmortem (pull_request) Has been cancelled
CICD / End-to-End Tests (pull_request) Has been cancelled
CICD / E2E Tests Failure Postmortem (pull_request) Has been cancelled

This commit is contained in:
copilotcoder
2026-07-11 23:10:20 -04:00
parent 9bea834999
commit efe1a7ee50

View File

@@ -11,7 +11,14 @@
"prConcurrentLimit": 5,
"branchConcurrentLimit": 10,
"prHourlyLimit": 2,
"enabledManagers": [
"docker-compose",
"dockerfile",
"github-actions",
"npm",
"pep621",
"regex"
],
"packageRules": [
{
"description": "Automerge non-major updates for high-confidence packages",
@@ -28,9 +35,24 @@
},
{
"description": "Group Python dev tools updates",
"matchManagers": ["uv"],
"matchManagers": ["pep621"],
"matchCategories": ["python"],
"matchDepTypes": ["dev-dependencies"],
"matchPackageNames": [
"ruff",
"pyright",
"pydoclint",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-mock",
"pre-commit",
"pyyaml",
"yamllint",
"toml-sort",
"language-formatters-pre-commit-hooks",
"xdoctest",
"poethepoet"
],
"groupName": "Python dev tools",
"schedule": ["before 9am on monday"]
},
@@ -76,7 +98,6 @@
"reviewersFromCodeOwners": true
}
],
"customManagers": [
{
"description": "Update Python version in Dockerfiles",
@@ -97,19 +118,15 @@
"versioningTemplate": "node"
}
],
"osvVulnerabilityAlerts": true,
"osvVulnerabilityAlerts": false,
"vulnerabilityAlerts": {
"enabled": true,
"schedule": ["at any time"]
},
"labels": ["dependencies"],
"commitMessagePrefix": "chore:",
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "to {{newVersion}}",
"commitMessageSuffix": "",
"prTitle": "{{commitMessagePrefix}} {{commitMessageAction}} {{commitMessageTopic}} {{commitMessageExtra}}",
"prBodyTemplate": "This PR contains the following updates:\n\n| Package | Change | Age | Adoption | Passing | Confidence |\n|---|---|---|---|---|---|\n{{#each upgrades}}\n|{{depName}}|{{#if displayFrom}}`{{{displayFrom}}}` -> `{{{displayTo}}}`{{else}}`{{{newVersion}}}`{{/if}}|[![age](https://badges.renovateapi.com/packages/{{datasource}}/{{depName}}/{{newVersion}}/age-slim)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://badges.renovateapi.com/packages/{{datasource}}/{{depName}}/{{newVersion}}/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://badges.renovateapi.com/packages/{{datasource}}/{{depName}}/{{newVersion}}/compatibility-slim/{{currentVersion}})](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://badges.renovateapi.com/packages/{{datasource}}/{{depName}}/{{newVersion}}/confidence-slim/{{currentVersion}})](https://docs.renovatebot.com/merge-confidence/)|\n{{/each}}\n\n---\n\n### Release Notes\n\n{{#each upgrades}}\n{{#if hasReleaseNotes}}\n<details>\n<summary>{{depName}}</summary>\n\n{{#each releases}}\n#### {{title}}\n\n{{#if body}}\n{{body}}\n{{/if}}\n{{/each}}\n\n</details>\n{{/if}}\n{{/each}}\n\n### Configuration\n\n📅 **Schedule**: {{schedule}}\n\n🚦 **Automerge**: {{#if isAutomerge}}Enabled{{else}}Disabled{{/if}}\n\n♻ **Rebasing**: {{#if isRebasing}}Rebasing{{else}}Not rebasing{{/if}}\n\n👥 **Reviewers**: {{#if reviewers}}{{reviewers}}{{else}}None{{/if}}\n\n---\n\n*This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).*"
}