1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-05-31 22:59:51 +02:00

chore: disable gorilla/csrf upgrades temporarily

Until https://github.com/gorilla/csrf/issues/186 is fixed
This commit is contained in:
Alec Thomas 2025-04-30 19:58:02 +10:00
parent 66b90e71b1
commit 1b932ecf9b

View File

@ -1,6 +1,6 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits",
":semanticCommitTypeAll(chore)",
@ -8,11 +8,16 @@
"group:allNonMajor",
"schedule:earlyMondays", // Run once a week.
],
packageRules: [
"packageRules": [
{
matchPackageNames: ["golangci-lint"],
matchManagers: ["hermit"],
enabled: false,
"matchPackageNames": ["golangci-lint"],
"matchManagers": ["hermit"],
"enabled": false
},
],
{
"matchPackageNames": ["github.com/gorilla/csrf"],
"matchManagers": ["gomod"],
"enabled": false
}
]
}