Documentation ¶
Index ¶
Constants ¶
const ( FlagsRepositoryCategory = "Woodpecker Repository Flags" FlagsPipelineCategory = "Woodpecker Pipeline Flags" FlagsCommitCategory = "Woodpecker Commit Flags" FlagsStepCategory = "Woodpecker Step Flags" FlagsSystemCategory = "Woodpecker System Flags" FlagsPluginCategory = "Plugin Flags" )
Variables ¶
This section is empty.
Functions ¶
func SetupConsoleLogger ¶
func SetupConsoleLogger(c *cli.Context) error
SetupConsoleLogger sets up the console logger.
Types ¶
type Author ¶
type Author struct { Name string `json:"name,omitempty"` Email string `json:"email,omitempty"` Avatar string `json:"avatar,omitempty"` }
Author defines runtime metadata for a commit author.
type Commit ¶
type Commit struct { Sha string `json:"sha,omitempty"` Ref string `json:"ref,omitempty"` Refspec string `json:"refspec,omitempty"` PullRequest string `json:"pull_request,omitempty"` SourceBranch string `json:"source_branch,omitempty"` TargetBranch string `json:"target_branch,omitempty"` Branch string `json:"branch,omitempty"` Tag string `json:"tag,omitempty"` Message string `json:"message,omitempty"` Author Author `json:"author,omitempty"` }
Commit defines runtime metadata for a commit.
type ExecuteFunc ¶
ExecuteFunc defines the function that is executed by the plugin.
type Metadata ¶
type Metadata struct { Repository Repository `json:"repo,omitempty"` Pipeline Pipeline `json:"curr,omitempty"` Curr Commit `json:"commit,omitempty"` Prev Commit `json:"prev,omitempty"` Step Step `json:"step,omitempty"` System System `json:"sys,omitempty"` }
Metadata defines runtime metadata.
func MetadataFromContext ¶
func MetadataFromContext(ctx *cli.Context) Metadata
MetadataFromContext creates a Metadata from the cli.Context.
type Network ¶ added in v0.2.0
type Network struct { // Context for making network requests. // // If `trace` logging is requested the context will use `httptrace` to // capture all network requests. //nolint:containedctx Context context.Context /// Whether SSL verification is skipped SkipVerify bool // Client for making network requests. Client *http.Client }
Network contains options for connecting to the network.
func NetworkFromContext ¶ added in v0.2.0
func NetworkFromContext(ctx *cli.Context) Network
type Options ¶
type Options struct { // Name of the plugin. Name string // Description of the plugin. Description string // Version of the plugin. Version string // Version metadata of the plugin. VersionMetadata string // Flags of the plugin. Flags []cli.Flag // Execute function of the plugin. Execute ExecuteFunc }
Options defines the options for the plugin.
type Pipeline ¶
type Pipeline struct { Number int64 `json:"number,omitempty"` Status string `json:"status,omitempty"` Event string `json:"event,omitempty"` Link string `json:"link,omitempty"` DeployTarget string `json:"target,omitempty"` Created time.Time `json:"created,omitempty"` Started time.Time `json:"started,omitempty"` Finished time.Time `json:"finished,omitempty"` Parent int64 `json:"parent,omitempty"` }
Pipeline defines runtime metadata for a pipeline.
type Plugin ¶
type Plugin struct { // Network options. Network Network // Metadata of the current pipeline. Metadata Metadata // contains filtered or unexported fields }
Plugin defines the plugin instance.
type Repository ¶
type Repository struct { Name string `json:"name,omitempty"` Owner string `json:"owner,omitempty"` Link string `json:"link,omitempty"` CloneURL string `json:"clone_url,omitempty"` Private bool `json:"private,omitempty"` Branch string `json:"default_branch,omitempty"` }
Repository defines runtime metadata for a repository.
type Step ¶
type Step struct { Number int `json:"number,omitempty"` Started time.Time `json:"started,omitempty"` Finished time.Time `json:"finished,omitempty"` }
Step defines runtime metadata for a step.
type StringSliceFlag ¶
type StringSliceFlag struct {
// contains filtered or unexported fields
}
StringSliceFlag is a flag type which support comma separated values and escaping to not split at unwanted lines.
func (*StringSliceFlag) Get ¶
func (s *StringSliceFlag) Get() []string
func (*StringSliceFlag) Set ¶
func (s *StringSliceFlag) Set(value string) error
func (*StringSliceFlag) String ¶
func (s *StringSliceFlag) String() string