yp05327 2023-04-08 07:20:50 +09:00 committed by GitHub
parent c0246677a6
commit 68aac691c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -75,6 +75,7 @@ type ViewJob struct {
Name string `json:"name"`
Status string `json:"status"`
CanRerun bool `json:"canRerun"`
Duration string `json:"duration"`
}
type ViewCommit struct {
@ -144,6 +145,7 @@ func ViewPost(ctx *context_module.Context) {
Name: v.Name,
Status: v.Status.String(),
CanRerun: v.Status.IsDone() && ctx.Repo.CanWrite(unit.TypeActions),
Duration: v.Duration().String(),
})
}