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

feat: add renovate config #282

Merged
merged 1 commit into from
Nov 4, 2023
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions renovate-config.json
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"]
}
33 changes: 33 additions & 0 deletions renovate-config.json5
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
}
}