Update tokens, formatting (#43)

This commit is contained in:
2023-06-04 10:24:27 +01:00
committed by GitHub
parent 28fc3413a5
commit de0583d6c9
4 changed files with 41 additions and 26 deletions

View File

@ -1,26 +1,42 @@
{
"extends": ["config:base"],
"extends": [
"config:base"
],
"platformCommit": true,
"dependencyDashboardAutoclose": true,
"assignAutomerge": true,
"assigneesFromCodeOwners": true,
"rebaseWhen": "behind-base-branch",
"rollbackPrs": true,
"labels": ["dependencies"],
"labels": [
"dependencies"
],
"packageRules": [
{
"matchPackagePatterns": ["black", "pylint"],
"labels": ["linting"]
"matchPackagePatterns": [
"black",
"pylint"
],
"labels": [
"linting"
]
},
{
"matchPackagePatterns": ["coverage", "pytest"],
"labels": ["unit-tests"]
"matchPackagePatterns": [
"coverage",
"pytest"
],
"labels": [
"unit-tests"
]
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"labels": [
"security"
],
"commitMessagePrefix": "[SECURITY] ",
"prCreation": "immediate"
}
}
}