Skip to content

Commit 71cea88

Browse files
committed
Update schemas (2024-04-10)
1 parent 5a80940 commit 71cea88

File tree

5 files changed

+58
-9
lines changed

5 files changed

+58
-9
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Unreleased
1010

1111
.. vendor-insert-here
1212
13-
- Update vendored schemas (2024-04-07)
13+
- Update vendored schemas (2024-04-10)
1414

1515
0.28.1
1616
------

src/check_jsonschema/builtin_schemas/vendor/gitlab-ci.json

Lines changed: 53 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1175,11 +1175,60 @@
11751175
]
11761176
},
11771177
"exists": {
1178-
"type": "array",
11791178
"markdownDescription": "Additional attributes will be provided to job if any of the provided paths matches an existing file in the repository. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#rulesexists).",
1180-
"items": {
1181-
"type": "string"
1182-
}
1179+
"anyOf": [
1180+
{
1181+
"type": "array",
1182+
"items": {
1183+
"type": "string"
1184+
}
1185+
},
1186+
{
1187+
"type": "object",
1188+
"additionalProperties": false,
1189+
"required": [
1190+
"paths"
1191+
],
1192+
"properties": {
1193+
"paths": {
1194+
"type": "array",
1195+
"description": "List of file paths.",
1196+
"items": {
1197+
"type": "string"
1198+
}
1199+
},
1200+
"project": {
1201+
"type": "string",
1202+
"description": "Path of the project to search in."
1203+
}
1204+
}
1205+
},
1206+
{
1207+
"type": "object",
1208+
"additionalProperties": false,
1209+
"required": [
1210+
"paths",
1211+
"project"
1212+
],
1213+
"properties": {
1214+
"paths": {
1215+
"type": "array",
1216+
"description": "List of file paths.",
1217+
"items": {
1218+
"type": "string"
1219+
}
1220+
},
1221+
"project": {
1222+
"type": "string",
1223+
"description": "Path of the project to search in."
1224+
},
1225+
"ref": {
1226+
"type": "string",
1227+
"description": "Ref of the project to search in."
1228+
}
1229+
}
1230+
}
1231+
]
11831232
},
11841233
"timeout": {
11851234
"type": "string",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
928f2e3f77ca7ae007f284496a2ad0bbfef12febdee62099f8b1b742ba6c54cd
1+
fd6be5cd001bd79e0a0a0a10111b84d41e854ec18fb285cf2414b4c85bac533c

src/check_jsonschema/builtin_schemas/vendor/renovate.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@
934934
"dockerSidecarImage": {
935935
"description": "Change this value to override the default Renovate sidecar image.",
936936
"type": "string",
937-
"default": "ghcr.io/containerbase/sidecar:10.3.11"
937+
"default": "ghcr.io/containerbase/sidecar:10.3.13"
938938
},
939939
"dockerUser": {
940940
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
@@ -2798,7 +2798,7 @@
27982798
"default": 0
27992799
},
28002800
"prTitle": {
2801-
"description": "Pull Request title template (deprecated). Inherits from `commitMessage` if null.",
2801+
"description": "Pull Request title template. Inherits from `commitMessage` if null.",
28022802
"type": "string",
28032803
"default": null
28042804
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
adefc32bff03e9c8800d3c1f2eb22908e134474dbd98c916bf75fe14690e51e2
1+
ffad7a78901c229bcd47b8fe862e4d01eea794b2404276eb405f7504372a3839

0 commit comments

Comments
 (0)