Files
unleash/renovate.json
Nuno Góis 58d6324d78 chore: fix AI flag cleanup after Python bump (#11587)
https://linear.app/unleash/issue/2-4311/fix-ai-flag-cleanup-after-python-version-bump

Our AI flag cleanup action (Henry) seems to have broken after
@renovate-bot bumped Python to 3.14 in this PR:
https://github.com/Unleash/unleash/pull/11553

This is because [Aider](https://aider.chat/) does not support 3.14 yet,
and seems to be expecting 3.12.

This reverts Python to 3.12 and adds an exclusion rule to
`renovate.json` so this doesn't happen again.

Confirmed this works again:
https://github.com/Unleash/unleash/actions/runs/23010126306
2026-03-12 15:48:45 +00:00

29 lines
840 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"timezone": "Europe/Madrid",
"schedule": ["after 7pm every weekday", "before 5am every weekday"],
"packageRules": [
{
"description": "Do not bump python-version in AI flag cleanup workflow",
"matchManagers": ["github-actions"],
"matchDepNames": ["python"],
"matchFileNames": [".github/workflows/ai-flag-cleanup-pr.yml"],
"enabled": false
},
{
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": ["*"],
"automerge": true,
"minimumReleaseAge": "7 days",
"internalChecksFilter": "strict"
}
],
"ignoreDeps": [
"react-router-dom",
"docusaurus-plugin-openapi-docs",
"docusaurus-theme-openapi-docs"
],
"labels": ["dependencies"]
}