From 156a1362d2d73b31c4a6bc273932d5a7de44bb7c Mon Sep 17 00:00:00 2001 From: David May <1301201+wass3r@users.noreply.github.com> Date: Fri, 15 Oct 2021 15:49:12 -0500 Subject: [PATCH] enhance: add skipped status to constants (#201) --- constants/status.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/constants/status.go b/constants/status.go index 71e496b8..2c3c5a7c 100644 --- a/constants/status.go +++ b/constants/status.go @@ -26,4 +26,7 @@ const ( // StatusSuccess defines the status type for build and step success statuses. StatusSuccess = "success" + + // StatusSkipped defines the status type for build and step skipped statuses. + StatusSkipped = "skipped" )