Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions cspell.config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"ignorePaths": ["node_modules/**", "dist/**", "mage_output_file.go", "package.json", "yarn.lock"],
"ignoreRegExpList": ["import\\s*\\((.|[\r\n])*?\\)", "import\\s*.*\".*?\""],
"ignorePaths": [
"node_modules/**",
"dist/**",
"mage_output_file.go",
"package.json",
"renovate.json",
"yarn.lock"
],
"ignoreRegExpList": [
"import\\s*\\((.|[\r\n])*?\\)",
"import\\s*.*\".*?\""
],
"words": [
"araddon",
"bmike",
Expand Down Expand Up @@ -59,6 +69,6 @@
"vals",
"vladimirdotk",
"Wrapf",
"confg" //this is unfortunately a typo in a file name that is not easy to fix
"confg"
]
}
}
65 changes: 65 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>grafana/grafana-renovate-config//presets/automerge"],
"minimumReleaseAge": "7 days",
"platformAutomerge": true,
"timezone": "UTC",
"prConcurrentLimit": 3,
"dependencyDashboard": true,
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"schedule": ["at any time"],
"additionalBranchPrefix": "security-"
},
"packageRules": [
{
"description": "Bundle all frontend dependency updates into a single weekly PR",
"matchManagers": ["npm"],
"groupName": "Frontend dependencies",
"groupSlug": "frontend-dependencies",
"extends": ["schedule:earlyMondays"]
},
{
"description": "Bundle all backend dependency updates into a single weekly PR",
"matchManagers": ["gomod"],
"groupName": "Backend dependencies",
"groupSlug": "backend-dependencies",
"extends": ["schedule:earlyMondays"]
},
{
"description": "Bundle all Docker image updates into a single weekly PR",
"matchManagers": ["dockerfile", "docker-compose"],
"groupName": "Docker dependencies",
"groupSlug": "docker-dependencies",
"extends": ["schedule:earlyMondays"]
},
{
"description": "Ignore major updates for dependencies that need to be kept in sync with Grafana",
"enabled": false,
"matchDatasources": ["npm"],
"matchPackageNames": [
"react",
"react-dom",
"react-router-dom",
"react-router-dom-v5-compat",
"@types/react",
"@types/react-dom"
],
"matchUpdateTypes": ["major"]
},
{
"description": "Ignore major updates for dependencies that need to be kept in sync with the Node version defined in .nvmrc",
"enabled": false,
"matchDatasources": ["npm", "node-version"],
"matchPackageNames": ["@types/node", "node"],
"matchUpdateTypes": ["major"]
},
{
"description": "Automerge minor dependencies",
"automerge": true,
"matchUpdateTypes": ["minor", "patch", "pin", "pinDigest"],
"labels": ["automerge-minor"]
}
]
}
Loading