From bb6ed545306ba56b99d297a77da0a93b0bcfb80e Mon Sep 17 00:00:00 2001 From: shadowpigy <71599610+shadowpigy@users.noreply.github.com> Date: Fri, 2 Feb 2024 20:41:39 +0800 Subject: [PATCH] Fix: Add RunStatusCancelled (#650) Co-authored-by: shadowpigy --- run.go | 1 + 1 file changed, 1 insertion(+) diff --git a/run.go b/run.go index dbb708a..d067565 100644 --- a/run.go +++ b/run.go @@ -40,6 +40,7 @@ const ( RunStatusFailed RunStatus = "failed" RunStatusCompleted RunStatus = "completed" RunStatusExpired RunStatus = "expired" + RunStatusCancelled RunStatus = "cancelled" ) type RunRequiredAction struct {