1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Merge pull request #220 from jdsingh/master

[CircleCi] - Green build color for fixed builds
This commit is contained in:
Chris Cummer 2018-06-22 05:37:44 -07:00 committed by GitHub
commit 4a7136818b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,6 +72,8 @@ func buildColor(build *Build) string {
return "yellow" return "yellow"
case "success": case "success":
return "green" return "green"
case "fixed":
return "green"
default: default:
return "white" return "white"
} }