Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate renovate config #17126

Merged
merged 4 commits into from
Dec 6, 2024
Merged
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
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',
],
}
Loading