mirror of
https://github.com/actions/runner.git
synced 2025-12-12 23:46:12 +00:00
GitHub Actions Runner
This commit is contained in:
15
src/Runner.Common/ActionResult.cs
Normal file
15
src/Runner.Common/ActionResult.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace GitHub.Runner.Common
|
||||
{
|
||||
public enum ActionResult
|
||||
{
|
||||
Success = 0,
|
||||
|
||||
Failure = 1,
|
||||
|
||||
Cancelled = 2,
|
||||
|
||||
Skipped = 3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user