mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
14 lines
167 B
C#
14 lines
167 B
C#
namespace GitHub.Runner.Common
|
|
{
|
|
public enum ActionResult
|
|
{
|
|
Success = 0,
|
|
|
|
Failure = 1,
|
|
|
|
Cancelled = 2,
|
|
|
|
Skipped = 3
|
|
}
|
|
}
|