fix #108 - support matrix expressions in job name (#109)

This commit is contained in:
Casey Lee
2020-02-26 23:29:43 -08:00
committed by GitHub
parent e739f72c5e
commit 21e2bb8657
6 changed files with 34 additions and 17 deletions

View File

@@ -1,7 +1,6 @@
package model
import (
"fmt"
"io/ioutil"
"math"
"os"
@@ -39,7 +38,7 @@ func (r *Run) String() string {
if jobName == "" {
jobName = r.JobID
}
return fmt.Sprintf("%s/%s", r.Workflow.Name, jobName)
return jobName
}
// Job returns the job for this Run