Skip to content

Commit a6be9f7

Browse files
authored
Merge pull request #100 from common-workflow-language/remove-badge-header
Remove `[CWL]` from badge subjects
2 parents 55fb28b + 0f35dc6 commit a6be9f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cwltest/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,11 +477,12 @@ def main(): # type: () -> int
477477
color = "green"
478478
else:
479479
color = "red"
480+
480481
with open("{}/{}.json".format(args.badgedir, t), "w") as out:
481482
out.write(
482483
json.dumps(
483484
{
484-
"subject": "[CWL] {}".format(t),
485+
"subject": "{}".format(t),
485486
"status": "{}%".format(percent),
486487
"color": color,
487488
}

0 commit comments

Comments
 (0)