Fix job_details.json schema

closes https://gitlab.com/gitlab-org/gitlab-ce/issues/51927
This commit is contained in:
Steve Azzopardi 2018-09-28 13:51:22 +02:00
parent ba66e0cc9c
commit c6139a03eb
No known key found for this signature in database
GPG Key ID: 605BD4706E7DB47D
1 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,9 @@
],
"description": "An extension of job.json with more detailed information",
"required": [
"artifact",
"runner",
"runners",
"has_trace"
],
"properties": {
@ -12,7 +15,7 @@
"trigger": { "$ref": "trigger.json" },
"deployment_status": { "$ref": "deployment_status.json" },
"runner": { "$ref": "runner.json" },
"runners": { "type": "runners.json" },
"runners": { "$ref": "runners.json" },
"has_trace": { "type": "boolean" }
}
}