mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
21 lines
444 B
C#
21 lines
444 B
C#
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
public enum WorkflowRunStatus
|
|
{
|
|
[Parameter(Value = "requested")]
|
|
Requested,
|
|
[Parameter(Value = "in_progress")]
|
|
InProgress,
|
|
[Parameter(Value = "completed")]
|
|
Completed,
|
|
[Parameter(Value = "queued")]
|
|
Queued,
|
|
[Parameter(Value = "waiting")]
|
|
Waiting,
|
|
[Parameter(Value = "pending")]
|
|
Pending
|
|
}
|
|
}
|