Skip to content

Commit

Permalink
ci: disable lock file maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Mar 25, 2024
1 parent 23b5a73 commit 98d1518
Showing 1 changed file with 56 additions and 27 deletions.
83 changes: 56 additions & 27 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,58 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"timezone": "Europe/Gibraltar",
"schedule": ["before 9am on monday"],
"extends": ["config:recommended", ":dependencyDashboard"],
"assignees": ["@biomejs/maintainers", "@biomejs/core-contributors"],
"packageRules": [
{
"groupName": "github-actions",
"matchManagers": ["github-actions"]
},
{
"groupName": "Rust crates",
"matchManagers": ["cargo"],
"matchFileNames": ["crates/**", "xtask/**"],
"ignoreDeps": ["syn", "quote"]
},
{
"groupName": "Website",
"matchFileNames": ["website/package.json"],
"matchManagers": ["npm"]
},
{
"groupName": "@biomejs packages",
"matchFileNames": ["packages/**"],
"matchManagers": ["npm"]
}
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"timezone": "Europe/Gibraltar",
"schedule": [
"before 9am on monday"
],
"extends": [
"config:recommended",
":dependencyDashboard"
],
"lockFileMaintenance": {
"enabled": false
},
"assignees": [
"@biomejs/maintainers",
"@biomejs/core-contributors"
],
"packageRules": [
{
"groupName": "github-actions",
"matchManagers": [
"github-actions"
]
},
{
"groupName": "Rust crates",
"matchManagers": [
"cargo"
],
"matchFileNames": [
"crates/**",
"xtask/**"
],
"ignoreDeps": [
"syn",
"quote"
]
},
{
"groupName": "Website",
"matchFileNames": [
"website/package.json"
],
"matchManagers": [
"npm"
]
},
{
"groupName": "@biomejs packages",
"matchFileNames": [
"packages/**"
],
"matchManagers": [
"npm"
]
}
]
}

0 comments on commit 98d1518

Please sign in to comment.