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