From 72cf689b9d21dc06f4235ec694e25aae8ec04c8e Mon Sep 17 00:00:00 2001 From: Julien Duchesne Date: Tue, 23 Nov 2021 08:44:26 -0500 Subject: [PATCH] Add `retries` option to clone manifest Will be used to support https://github.com/drone/drone-git/pull/43 --- manifest/clone.go | 1 + 1 file changed, 1 insertion(+) diff --git a/manifest/clone.go b/manifest/clone.go index 876872f..14a7092 100644 --- a/manifest/clone.go +++ b/manifest/clone.go @@ -8,6 +8,7 @@ package manifest type Clone struct { Disable bool `json:"disable,omitempty"` Depth int `json:"depth,omitempty"` + Retries int `json:"retries,omitempty"` SkipVerify bool `json:"skip_verify,omitempty" yaml:"skip_verify"` Trace bool `json:"trace,omitempty"` }