workflows: fix case

master
Jonathan Chang 2020-05-02 23:22:06 +10:00
parent dfeab962a4
commit 0d5644a597
1 changed files with 2 additions and 1 deletions

View File

@ -110,7 +110,8 @@ jobs:
if (actor != 'BrewTestBot') {
comment += '@' + actor
}
comment += ' bottle publish [${{job.status}}](' + url + ').'
let status = '${{job.status}}'.toLowerCase()
comment += ' bottle publish [' + status + '](' + url + ').'
github.issues.createComment({
...context.repo,