Files
plex-playlist/renovate.json
copilotcoder efe1a7ee50
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
Stabilize Renovate manager scope and remove OSV fetch
2026-07-11 23:10:20 -04:00

133 lines
5.0 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
":separatePatchReleases"
],
"timezone": "America/New_York",
"schedule": ["before 9am every weekday"],
"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",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"matchPackagePatterns": [
"^@types/",
"^eslint",
"^prettier",
"^ruff",
"^pytest"
],
"automerge": true,
"automergeType": "branch"
},
{
"description": "Group Python dev tools updates",
"matchManagers": ["pep621"],
"matchCategories": ["python"],
"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"]
},
{
"description": "Group Frontend dev tools updates",
"matchManagers": ["npm"],
"matchDepTypes": ["devDependencies"],
"matchPackagePatterns": [
"^@typescript-eslint/",
"^eslint",
"^prettier",
"^vite",
"^vitest",
"^playwright"
],
"groupName": "Frontend dev tools",
"schedule": ["before 9am on monday"]
},
{
"description": "Group Docker base image updates",
"matchManagers": ["dockerfile"],
"matchPackageNames": ["ubuntu", "node", "python"],
"groupName": "Docker base images",
"schedule": ["before 9am on monday"],
"automerge": false,
"reviewersFromCodeOwners": true
},
{
"description": "Security updates - high priority",
"matchPackagePatterns": [".*"],
"vulnerabilityAlerts": true,
"prPriority": 10,
"automerge": false,
"labels": ["security"],
"reviewersFromCodeOwners": true
},
{
"description": "Major updates - require manual review",
"matchUpdateTypes": ["major"],
"automerge": false,
"labels": ["major-update"],
"prPriority": 5,
"reviewersFromCodeOwners": true
}
],
"customManagers": [
{
"description": "Update Python version in Dockerfiles",
"customType": "regex",
"fileMatch": ["^Dockerfile.*$"],
"matchStrings": ["FROM python:(?<currentValue>\\d+\\.\\d+)"],
"datasourceTemplate": "docker",
"depNameTemplate": "python",
"versioningTemplate": "loose"
},
{
"description": "Update Node.js version in Dockerfiles",
"customType": "regex",
"fileMatch": ["^Dockerfile.*$"],
"matchStrings": ["FROM node:(?<currentValue>\\d+)"],
"datasourceTemplate": "docker",
"depNameTemplate": "node",
"versioningTemplate": "node"
}
],
"osvVulnerabilityAlerts": false,
"vulnerabilityAlerts": {
"enabled": true,
"schedule": ["at any time"]
},
"labels": ["dependencies"],
"commitMessagePrefix": "chore:",
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "to {{newVersion}}",
"commitMessageSuffix": "",
"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).*"
}