Skip to content
Merged
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
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Dependency management is handled by Renovate (see renovate.json).
# This file intentionally disables Dependabot version updates so the two
# bots do not produce duplicate PRs for the same dependency.
#
# Note: Dependabot *security* updates are configured separately and cannot
# be disabled via this file. To turn them off, go to:
# Settings -> Code security -> Dependabot security updates
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
open-pull-requests-limit: 0
33 changes: 26 additions & 7 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,30 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":semanticCommitsDisabled"
"config:recommended",
":semanticCommitsDisabled",
":dependencyDashboard"
],
"ignoreDeps": [],
"labels": ["Renovate"],
"rebaseWhen": "conflicted",
"schedule": ["on the first day of the month"]
}
"labels": ["dependencies", "Renovate"],
"rebaseWhen": "behind-base-branch",
"schedule": ["before 6am on the first day of the month"],
"prConcurrentLimit": 10,
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 6am on the first day of the month"]
},
"packageRules": [
{
"groupName": "patch updates",
"matchUpdateTypes": ["patch"]
},
{
"matchUpdateTypes": ["major"],
"addLabels": ["major-update"],
"dependencyDashboardApproval": true
}
],
"vulnerabilityAlerts": {
"labels": ["security"]
}
}