mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-28 17:05:57 +00:00
56895ea621
* move formatting code to flag * reformat code
70 lines
1.3 KiB
C#
70 lines
1.3 KiB
C#
using System;
|
|
using Octokit.Internal;
|
|
|
|
namespace Octokit
|
|
{
|
|
public enum CheckStatus
|
|
{
|
|
[Parameter(Value = "queued")]
|
|
Queued,
|
|
|
|
[Parameter(Value = "in_progress")]
|
|
InProgress,
|
|
|
|
[Parameter(Value = "completed")]
|
|
Completed,
|
|
}
|
|
|
|
public enum CheckConclusion
|
|
{
|
|
[Parameter(Value = "success")]
|
|
Success,
|
|
|
|
[Parameter(Value = "failure")]
|
|
Failure,
|
|
|
|
[Parameter(Value = "neutral")]
|
|
Neutral,
|
|
|
|
[Parameter(Value = "cancelled")]
|
|
Cancelled,
|
|
|
|
[Parameter(Value = "timed_out")]
|
|
TimedOut,
|
|
|
|
[Parameter(Value = "action_required")]
|
|
ActionRequired,
|
|
|
|
[Parameter(Value = "skipped")]
|
|
Skipped,
|
|
|
|
[Parameter(Value = "stale")]
|
|
Stale,
|
|
}
|
|
|
|
public enum CheckAnnotationLevel
|
|
{
|
|
[Parameter(Value = "notice")]
|
|
Notice,
|
|
|
|
[Parameter(Value = "warning")]
|
|
Warning,
|
|
|
|
[Parameter(Value = "failure")]
|
|
Failure,
|
|
}
|
|
|
|
[Obsolete("This enum is replaced with CheckAnnotationLevel but may still be required on GitHub Enterprise 2.14")]
|
|
public enum CheckWarningLevel
|
|
{
|
|
[Parameter(Value = "notice")]
|
|
Notice,
|
|
|
|
[Parameter(Value = "warning")]
|
|
Warning,
|
|
|
|
[Parameter(Value = "failure")]
|
|
Failure,
|
|
}
|
|
}
|