Skip to content

Commit

Permalink
fix: add waiting state to deployment_status, check_run and `wor…
Browse files Browse the repository at this point in the history
…kflow_run` event

Ref: octokit/webhooks.net#52
  • Loading branch information
wolfy1339 committed Apr 28, 2022
1 parent d5c2bd2 commit b6d74df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -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": {
Expand Down
Expand Up @@ -119,7 +119,7 @@
},
"status": {
"type": "string",
"enum": ["queued", "in_progress", "completed"]
"enum": ["queued", "in_progress", "completed", "waiting"]
},
"conclusion": {
"type": ["string", "null"],
Expand Down
Expand Up @@ -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" },
Expand Down
Expand Up @@ -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": {
Expand Down

0 comments on commit b6d74df

Please sign in to comment.