Skip to content
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
14 changes: 10 additions & 4 deletions renovate-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@ module.exports = {
// Find all repositories the GitHub App token has permissions to
autodiscover: true,

// Don't create the onboarding PRs
// Open onboarding PRs on repos that don't yet have a Renovate config,
// proposing the standard config that extends the shared org-wide preset.
//
// All repositories in the organisation will inherit the shared configuration
// (./renovate-shared-config.json) by default unless they opt-out.
onboarding: false,
// The onboarding branch is set explicitly because branchPrefix does not
// apply to onboarding PRs.
onboarding: true,
onboardingBranch: 'bootc-renovate/configure',
onboardingConfig: {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>bootc-dev/infra:renovate-shared-config.json"],
},

// Centralise all Renovate configuration into this repository
//
Expand Down