Skip to content

Commit

Permalink
fix: add "cancelled" as possible conclusion of a completed workflow s…
Browse files Browse the repository at this point in the history
…tep (#892)
  • Loading branch information
eduramirezh committed Feb 3, 2024
1 parent 285da11 commit 6df0bc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -15,7 +15,7 @@
"status": { "type": "string", "enum": ["completed"] },
"conclusion": {
"type": "string",
"enum": ["failure", "skipped", "success"]
"enum": ["failure", "skipped", "success", "cancelled"]
},
"number": { "type": "integer" },
"started_at": { "type": "string", "format": "date-time" },
Expand Down
2 changes: 1 addition & 1 deletion payload-types/schema.d.ts
Expand Up @@ -8324,7 +8324,7 @@ export interface WorkflowStepQueued {
export interface WorkflowStepCompleted {
name: string;
status: "completed";
conclusion: "failure" | "skipped" | "success";
conclusion: "failure" | "skipped" | "success" | "cancelled";
number: number;
started_at: string;
completed_at: string;
Expand Down

0 comments on commit 6df0bc4

Please sign in to comment.