Change uint8 to uint64 to hold job with more than 255 run attempts (#6935)
This commit is contained in:
parent
8c41ae8af0
commit
1786ece4a4
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ type Run struct {
|
|||
workflowName string // cache column
|
||||
WorkflowID int64 `json:"workflow_id"`
|
||||
Number int64 `json:"run_number"`
|
||||
Attempts uint8 `json:"run_attempt"`
|
||||
Attempts uint64 `json:"run_attempt"`
|
||||
HeadBranch string `json:"head_branch"`
|
||||
JobsURL string `json:"jobs_url"`
|
||||
HeadCommit Commit `json:"head_commit"`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue