Skip to content

Commit

Permalink
Migrate renovate config (#17126)
Browse files Browse the repository at this point in the history
Co-authored-by: Zoltán Lehóczky <[email protected]>
  • Loading branch information
renovate[bot] and Piedone authored Dec 6, 2024
1 parent ce0850f commit 2ee9261
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
{
// As a GitHub organization admin, you can access the Renovate dashboard at
// https: //developer.mend.io/github/OrchardCMS/OrchardCore and manage the GitHub app at
// https://developer.mend.io/github/OrchardCMS/OrchardCore and manage the GitHub app at
// https://github.com/organizations/OrchardCMS/settings/installations/57088442.
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'config:recommended',
],
// See https://docs.renovatebot.com/configuration-options/#configmigration.
"configMigration": true,
"packageRules": [
configMigration: true,
packageRules: [
{
"matchPackageNames": [
matchPackageNames: [
// See the corresponding comment in Directory.Packages.props.
"System.Drawing.Common"
'System.Drawing.Common',
],
"enabled": false
enabled: false,
},
{
// See https://github.com/OrchardCMS/OrchardCore/issues/16318 on why we have NPM updates disabled.
"managers": [ "npm" ],
"enabled": false
}
matchManagers: [
'npm',
],
enabled: false,
},
],
// We only need updates once a week.
"schedule": [ "before 5am on Sunday" ]
schedule: [
'before 5am on Sunday',
],
}

0 comments on commit 2ee9261

Please sign in to comment.