-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Zoltán Lehóczky <zoltan.lehoczky@lombiq.com>
- Loading branch information
1 parent
a45d29d
commit 9a1d682
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
// 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://github.com/organizations/OrchardCMS/settings/installations/57088442. | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended" | ||
], | ||
// See https://docs.renovatebot.com/configuration-options/#configmigration. | ||
"configMigration": true, | ||
"packageRules": [ | ||
{ | ||
"matchPackageNames": [ | ||
// See the corresponding comment in Directory.Packages.props. | ||
"System.Drawing.Common" | ||
], | ||
"enabled": false | ||
}, | ||
{ | ||
// See https://github.com/OrchardCMS/OrchardCore/issues/16318 on why we have NPM updates disabled. | ||
"managers": [ "npm" ], | ||
"enabled": false | ||
} | ||
], | ||
// We only need updates once a week. | ||
"schedule": [ "before 5am on Sunday" ] | ||
} |