Renovate config presets for some Capra projects.
See Configuration Options for a complete list of possible options.
This central Renovate configuration can be used both by repositories in capralifecycle, and repositories in other organizations. This is possible because we split the configuration of credentials, which cannot be referred to or even overridden in another organization (see renovatebot/renovate#26987), into a separate preset with-credentials.json. This is why there are sets of presets (for example default-base.json and default.json) with similar names. Internal consumers in the capralifecycle organization can use presets that include both configuration and credentials, while external consumers can only use presets specifying configuration, and must define credentials separately in their own repository or organization.
- External consumers: Use the presets with the "base" suffix, for example default-base.json. These presets contain configuration, but not credentials for Github Packages. The consumers must define their own credentials to use with Github Packages.
- Internal consumers: Use the presets without the "base" suffix, for example default.json. These presets extend the base configuration (for example default-base.json) and the preset containing credentials with-credentials.json.
For most code bases - using default.json
(default-base.json
for external
consumers):
{
"extends": ["github>capralifecycle/renovate-config:default"]
}
For libraries - using library.json
(library-base.json
for external
consumers):
{
"extends": ["github>capralifecycle/renovate-config:library"]
}
For aggressive merging - using aggressive.json
(aggressive-base.json
for external
consumers):
{
"extends": ["github>capralifecycle/renovate-config:aggressive"]
}
This will schedule at any time and automerge as much as possible, excluding major updates.
For automerging only within office hours - using office-hours.json
(office-hours-base.json
for external consumers):
{
"extends": ["github>capralifecycle/renovate-config:office-hours"]
}
To validate configuration files against the Renovate JSON Schema, run the validate.sh
-script.
$ ./validate.sh
Fetching latest JSON Schema
Migrating schema to newer version
saved migrated schema to renovate-schema.json
Now validating..
Validating aggressive.json
...