github.com/drone/runner-go@v1.12.0/manifest/clone.go (about)

     1  // Copyright 2019 Drone.IO Inc. All rights reserved.
     2  // Use of this source code is governed by the Polyform License
     3  // that can be found in the LICENSE file.
     4  
     5  package manifest
     6  
     7  // Clone configures the git clone.
     8  type Clone struct {
     9  	Disable    bool `json:"disable,omitempty"`
    10  	Depth      int  `json:"depth,omitempty"`
    11  	Retries    int  `json:"retries,omitempty"`
    12  	SkipVerify bool `json:"skip_verify,omitempty" yaml:"skip_verify"`
    13  	Trace      bool `json:"trace,omitempty"`
    14  }