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

14 lines
167 B
C#
Raw Normal View History

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