Files
runner/src/Runner.Common/ActionResult.cs
2019-10-10 00:52:42 -04:00

15 lines
178 B
C#

using System;
namespace GitHub.Runner.Common
{
public enum ActionResult
{
Success = 0,
Failure = 1,
Cancelled = 2,
Skipped = 3
}
}