From 5218860efe473157e0545d2441196d0ddb9100e7 Mon Sep 17 00:00:00 2001 From: Emmanuel Meinen Date: Thu, 20 Aug 2020 08:02:32 -0500 Subject: [PATCH] feat: add StatusCanceled (#103) --- constants/status.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/constants/status.go b/constants/status.go index d63a3cb7..54d3cec0 100644 --- a/constants/status.go +++ b/constants/status.go @@ -15,6 +15,9 @@ const ( // StatusKilled defines the status type for build and step killed statuses. StatusKilled = "killed" + // StatusCanceled defines the status type for build and step canceled statuses. + StatusCanceled = "canceled" + // StatusPending defines the status type for build and step pending statuses. StatusPending = "pending"