diff --git a/payload-schemas/api.github.com/check_run/created.schema.json b/payload-schemas/api.github.com/check_run/created.schema.json index 78a889287..d720f71f5 100644 --- a/payload-schemas/api.github.com/check_run/created.schema.json +++ b/payload-schemas/api.github.com/check_run/created.schema.json @@ -37,7 +37,7 @@ "details_url": { "type": "string", "format": "uri" }, "status": { "type": "string", - "enum": ["queued", "in_progress", "completed"], + "enum": ["queued", "in_progress", "completed", "waiting"], "description": "The current status of the check run. Can be `queued`, `in_progress`, or `completed`." }, "conclusion": { diff --git a/payload-schemas/api.github.com/check_run/requested_action.schema.json b/payload-schemas/api.github.com/check_run/requested_action.schema.json index 29cbb60e7..9cefc46ae 100644 --- a/payload-schemas/api.github.com/check_run/requested_action.schema.json +++ b/payload-schemas/api.github.com/check_run/requested_action.schema.json @@ -119,7 +119,7 @@ }, "status": { "type": "string", - "enum": ["queued", "in_progress", "completed"] + "enum": ["queued", "in_progress", "completed", "waiting"] }, "conclusion": { "type": ["string", "null"], diff --git a/payload-schemas/api.github.com/common/workflow-run.schema.json b/payload-schemas/api.github.com/common/workflow-run.schema.json index a65c6e738..4278c50a7 100644 --- a/payload-schemas/api.github.com/common/workflow-run.schema.json +++ b/payload-schemas/api.github.com/common/workflow-run.schema.json @@ -105,7 +105,7 @@ "run_number": { "type": "integer" }, "status": { "type": "string", - "enum": ["requested", "in_progress", "completed", "queued"] + "enum": ["requested", "in_progress", "completed", "queued", "waiting"] }, "updated_at": { "type": "string", "format": "date-time" }, "url": { "type": "string", "format": "uri" }, diff --git a/payload-schemas/api.github.com/deployment_status/created.schema.json b/payload-schemas/api.github.com/deployment_status/created.schema.json index 997e483c3..5667a183e 100644 --- a/payload-schemas/api.github.com/deployment_status/created.schema.json +++ b/payload-schemas/api.github.com/deployment_status/created.schema.json @@ -97,7 +97,7 @@ "details_url": { "type": "string", "format": "uri" }, "status": { "type": "string", - "enum": ["queued", "in_progress", "completed"], + "enum": ["queued", "in_progress", "completed", "waiting"], "description": "The current status of the check run. Can be `queued`, `in_progress`, or `completed`." }, "conclusion": {