renovate 43.218.0 → 43.220.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config/options/index.js +14 -1
- package/dist/config/options/index.js.map +1 -1
- package/dist/config/types.d.ts +3 -1
- package/dist/config/types.js.map +1 -1
- package/dist/config/validation.js +20 -1
- package/dist/config/validation.js.map +1 -1
- package/dist/global-config-option-defaults.generated.js +1 -1
- package/dist/global-config-option-defaults.generated.js.map +1 -1
- package/dist/modules/platform/github/schema.d.ts +4 -4
- package/dist/workers/repository/update/branch/artifacts.js +10 -4
- package/dist/workers/repository/update/branch/artifacts.js.map +1 -1
- package/dist/workers/repository/update/branch/status-checks.js +12 -0
- package/dist/workers/repository/update/branch/status-checks.js.map +1 -1
- package/package.json +2 -2
- package/renovate-schema.json +15 -0
|
@@ -368,6 +368,19 @@ const options = [
|
|
|
368
368
|
minimumReleaseAge: "renovate/stability-days"
|
|
369
369
|
}
|
|
370
370
|
},
|
|
371
|
+
{
|
|
372
|
+
name: "statusCheckWhen",
|
|
373
|
+
description: "Control when each Renovate status check is set on branches. Keys match `statusCheckNames`.",
|
|
374
|
+
type: "object",
|
|
375
|
+
mergeable: true,
|
|
376
|
+
advancedUse: true,
|
|
377
|
+
default: {
|
|
378
|
+
artifactError: "failed",
|
|
379
|
+
configValidation: "always",
|
|
380
|
+
mergeConfidence: "always",
|
|
381
|
+
minimumReleaseAge: "always"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
371
384
|
{
|
|
372
385
|
name: "extends",
|
|
373
386
|
description: "Configuration presets to use or extend.",
|
|
@@ -642,7 +655,7 @@ const options = [
|
|
|
642
655
|
name: "dockerSidecarImage",
|
|
643
656
|
description: "Change this value to override the default Renovate sidecar image.",
|
|
644
657
|
type: "string",
|
|
645
|
-
default: "ghcr.io/renovatebot/base-image:13.
|
|
658
|
+
default: "ghcr.io/renovatebot/base-image:13.58.0",
|
|
646
659
|
globalOnly: true,
|
|
647
660
|
deprecationMsg: "The usage of `binarySource=docker` is deprecated, and will be removed in the future"
|
|
648
661
|
},
|