Files
runner/src/Runner.Common/ActionResult.cs
T

13 lines
163 B
C#
Raw Normal View History

2019-10-10 00:52:42 -04:00
namespace GitHub.Runner.Common
{
public enum ActionResult
{
Success = 0,
Failure = 1,
Cancelled = 2,
Skipped = 3
}
}