-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f2524c6
commit 8c4f9b0
Showing
2 changed files
with
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"description": "Renovate onboarding preset for use with LizardByte's repos", | ||
"extends": ["github>LizardByte/.github:renovate-config.json5#feat-add-renovate-config"] | ||
} |
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,33 @@ | ||
{ | ||
// see https://docs.renovatebot.com/configuration-options | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"branchNameStrict": true, // remove special characters from branch names | ||
"configMigration": true, // allow renovate to open PRs to update config | ||
"description": "Default renovate configuration for LizardByte repositories", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"dependencyDashboard": true, // Creates an issue with a "dashboard" of dependencies | ||
"dependencyDashboardLabels": [ | ||
"dependencies" | ||
], | ||
"labels": [ | ||
"dependencies", | ||
"{{category}}" | ||
], | ||
"prConcurrentLimit": 10, | ||
"rollbackPrs": true, // create a rollback PR when a dependency is yanked | ||
"schedule": [ | ||
"after 1am", | ||
"before 6am" | ||
], | ||
"semanticCommitScope": "deps", | ||
"semanticCommitType": "build", | ||
"semanticCommits": "enabled", | ||
"timezone": "America/New_York", | ||
"updatePinnedDependencies": true, | ||
// beta features | ||
"git-submodules": { | ||
"enabled": true | ||
} | ||
} |