Files
runner/src/Runner.Common/ActionResult.cs
2022-09-15 12:14:10 +02:00

13 lines
163 B
C#

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