Change uint8 to uint64 to hold job with more than 255 run attempts (#6935)

This commit is contained in:
Sam Coe 2023-01-31 08:55:41 +11:00 committed by GitHub
parent 8c41ae8af0
commit 1786ece4a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"`