Skip to content

Commit

Permalink
fix: add waiting deployment status state (#52)
Browse files Browse the repository at this point in the history
* fix: add waiting deployment status state

Adds the `waiting` value to the `DeploymentStatusState` enumeration.

* fix: add waiting check run status state

Adds the `waiting` value to the `CheckRunStatus` enumeration.

* fix: add waiting workflow run status state

Adds the `waiting` value to the `WorkflowRunStatus` enumeration.
  • Loading branch information
martincostello authored Mar 31, 2022
1 parent 598d086 commit a39fe36
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Octokit.Webhooks/Models/CheckRunEvent/CheckRunStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ public enum CheckRunStatus
Completed,
[EnumMember(Value = "queued")]
Queued,
[EnumMember(Value = "waiting")]
Waiting,
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ public enum DeploymentStatusState
Failure,
[EnumMember(Value = "error")]
Error,
[EnumMember(Value = "waiting")]
Waiting,
}
}
2 changes: 2 additions & 0 deletions src/Octokit.Webhooks/Models/WorkflowRunStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ public enum WorkflowRunStatus
Completed,
[EnumMember(Value = "queued")]
Queued,
[EnumMember(Value = "waiting")]
Waiting,
}
}

0 comments on commit a39fe36

Please sign in to comment.