Files
discord-progress-bar/renovate.json
Paillat-dev 27105c856a Switch base branch from 'main' to 'master' in Renovate config.
Updated the `baseBranches` setting in `renovate.json` to use 'master' instead of 'main'. This aligns Renovate's configuration with the repository's primary branch naming convention.
2025-04-24 10:58:43 +02:00

26 lines
612 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"baseBranches": ["master"],
"labels": ["deps"],
"ignorePaths": ["requirements.txt"],
"commitMessagePrefix": "⬆️",
"commitMessageAction": "Upgrade",
"packageRules": [
{
"updateTypes": ["pin"],
"commitMessagePrefix": "📌",
"commitMessageAction": "Pin"
},
{
"updateTypes": ["rollback"],
"commitMessagePrefix": "⬇️",
"commitMessageAction": "Downgrade"
},
{
"matchDatasources": ["pypi"],
"addLabels": ["pypi"]
}
]
}