From cbdbb706b11e977c3e412dfe9b0aa5a132a9b61c Mon Sep 17 00:00:00 2001 From: David May <1301201+wass3r@users.noreply.github.com> Date: Tue, 18 Feb 2020 16:29:42 +0000 Subject: [PATCH] feat(badges): add build status badge constants (#38) --- constants/badge.go | 98 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 constants/badge.go diff --git a/constants/badge.go b/constants/badge.go new file mode 100644 index 00000000..c66cfdf5 --- /dev/null +++ b/constants/badge.go @@ -0,0 +1,98 @@ +// Copyright (c) 2019 Target Brands, Inc. All rights reserved. +// +// Use of this source code is governed by the LICENSE file in this repository. + +package constants + +// build status badges +const ( + // Badge for unknown state + // + // + // + // + // + // + // + // + // + // vela + // vela + // unknown + // unknown + // + // + BadgeUnknown = `velavelaunknownunknown` + + // Badge for success state + // + // + // + // + // + // + // + // + // + // vela + // vela + // success + // success + // + // + BadgeSuccess = `velavelasuccesssuccess` + + // Badge for failed state + // + // + // + // + // + // + // + // + // + // vela + // vela + // failed + // failed + // + // + BadgeFailed = `velavelafailedfailed` + + // Badge for error state + // + // + // + // + // + // + // + // + // + // vela + // vela + // error + // error + // + // + BadgeError = `velavelaerrorerror` + + // Badge for running status + // + // + // + // + // + // + // + // + // + // vela + // vela + // running + // running + // + // + BadgeRunning = `velavelarunningrunning` +)