From 1786ece4a4275b035d9bb88ac5bd656444b5ea47 Mon Sep 17 00:00:00 2001 From: Sam Coe Date: Tue, 31 Jan 2023 08:55:41 +1100 Subject: [PATCH] Change uint8 to uint64 to hold job with more than 255 run attempts (#6935) --- pkg/cmd/run/shared/shared.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/run/shared/shared.go b/pkg/cmd/run/shared/shared.go index 557882968..a1a71c4f9 100644 --- a/pkg/cmd/run/shared/shared.go +++ b/pkg/cmd/run/shared/shared.go @@ -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"`