Skip to content

Commit fe10bc3

Browse files
authored
chore(schema): Update schema to 379d3cbbce2c5db13840919a8f3c14bab5f9bca5 (#1320)
See <https://gitlab.com/gitlab-org/gitlab/-/merge_requests/155478>. Fixes #1307.
1 parent fc33502 commit fe10bc3

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

src/schema/schema.json

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,13 @@
256256
},
257257
"reports": {
258258
"type": "object",
259-
"markdownDescription": "Reports will be uploaded as artifacts, and often displayed in the Gitlab UI, such as in Merge Requests. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsreports).",
259+
"markdownDescription": "Reports will be uploaded as artifacts, and often displayed in the Gitlab UI, such as in merge requests. [Learn More](https://docs.gitlab.com/ee/ci/yaml/#artifactsreports).",
260260
"additionalProperties": false,
261261
"properties": {
262+
"annotations": {
263+
"type": "string",
264+
"description": "Path to JSON file with annotations report."
265+
},
262266
"junit": {
263267
"description": "Path for file(s) that should be parsed as JUnit XML result",
264268
"oneOf": [
@@ -290,7 +294,8 @@
290294
"coverage_format": {
291295
"description": "Code coverage format used by the test framework.",
292296
"enum": [
293-
"cobertura"
297+
"cobertura",
298+
"jacoco"
294299
]
295300
},
296301
"path": {
@@ -812,6 +817,15 @@
812817
],
813818
"additionalProperties": false
814819
},
820+
"akeyless": {
821+
"type": "object",
822+
"properties": {
823+
"name": {
824+
"type": "string"
825+
}
826+
},
827+
"additionalProperties": false
828+
},
815829
"file": {
816830
"type": "boolean",
817831
"default": true,
@@ -837,6 +851,11 @@
837851
"required": [
838852
"gcp_secret_manager"
839853
]
854+
},
855+
{
856+
"required": [
857+
"akeyless"
858+
]
840859
}
841860
],
842861
"dependencies": {

0 commit comments

Comments
 (0)