Our organizational level renovate configs
When we onboard a new repository with renovate it will use the default config
(default.json) that essentially ships some sane defaults from main.json.
By default, once the repo has been onboarded, the renovate config looks like this:
{
"extends": ["github>freecodecamp/renovate-config"]
}If you would like to override the defaults, then use something like the below:
-
To use weekend runs, add the
schedule-weekendkey:{ "extends": [ "github>freecodecamp/renovate-config:schedule-weekend", ... ], ... }
-
To use the hacktoberfest schedule:
{ "extends": [ "github>freecodecamp/renovate-config:schedule-hacktoberfest", ... ], ... }
-
OR start from scratch:
{ "extends": [ "config:recommended", ... ], ... }