Skip to content

Commit 3a6cc84

Browse files
committed
review comment
1 parent 719ec3f commit 3a6cc84

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/components/JenkinsJobs.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ const jenkinsColourToWebDashColour = new Map<string, string>([
2929
]);
3030

3131
const jenkinsColourToStatus = new Map<string, string>([
32-
["red", "fail"], // build broken
33-
["blue", "success"], // build success
32+
["red", "failed"], // build broken
33+
["blue", "succeeded"], // build success
3434
["aborted", "aborted"], // build aborted
3535
["yellow", "unstable"],
36-
["yellow_anime", "unstable-running"], // build running but was broken
37-
["red_anime", "fail-running"], // build running but was broken
38-
["blue_anime", "success-running"], // build running but was successful
39-
["aborted_anime", "aborted-running"], // build aborted but now running
36+
["yellow_anime", "running (unstable)"], // build running but was broken
37+
["red_anime", "running (failed)"], // build running but was broken
38+
["blue_anime", "running (succeeded)"], // build running but was successful
39+
["aborted_anime", "running (aborted)"], // build aborted but now running
4040
]);
4141

4242
export default function JenkinsJobs() {

0 commit comments

Comments
 (0)