Documentation ¶
Index ¶
- Constants
- type Action
- type ActionRuns
- type ActionRunsUsing
- type CompositeRestrictions
- type ContainerSpec
- type Defaults
- type GithubContext
- type Input
- type Job
- type JobContext
- type Output
- type Plan
- type Run
- type RunDefaults
- type Stage
- type Step
- type StepResult
- type StepType
- type Strategy
- type Workflow
- type WorkflowFiles
- type WorkflowPlanner
Constants ¶
const ( // ActionRunsUsingNode12 for running with node12 ActionRunsUsingNode12 = "node12" // ActionRunsUsingNode12 for running with node16 ActionRunsUsingNode16 = "node16" // ActionRunsUsingDocker for running with docker ActionRunsUsingDocker = "docker" // ActionRunsUsingComposite for running composite ActionRunsUsingComposite = "composite" )
const ( StepStatusSuccess stepStatus = iota StepStatusFailure StepStatusSkipped )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Action ¶
type Action struct { Name string `yaml:"name"` Author string `yaml:"author"` Description string `yaml:"description"` Inputs map[string]Input `yaml:"inputs"` Outputs map[string]Output `yaml:"outputs"` Runs ActionRuns `yaml:"runs"` Branding struct { Color string `yaml:"color"` Icon string `yaml:"icon"` } `yaml:"branding"` }
Action describes a metadata file for GitHub actions. The metadata filename must be either action.yml or action.yaml. The data in the metadata file defines the inputs, outputs and main entrypoint for your action.
type ActionRuns ¶
type ActionRuns struct { Using ActionRunsUsing `yaml:"using"` Env map[string]string `yaml:"env"` Main string `yaml:"main"` Image string `yaml:"image"` Entrypoint string `yaml:"entrypoint"` Args []string `yaml:"args"` Steps []Step `yaml:"steps"` }
ActionRuns are a field in Action
type ActionRunsUsing ¶
type ActionRunsUsing string
ActionRunsUsing is the type of runner for the action
func (*ActionRunsUsing) UnmarshalYAML ¶
func (a *ActionRunsUsing) UnmarshalYAML(unmarshal func(interface{}) error) error
type CompositeRestrictions ¶
type CompositeRestrictions struct { AllowCompositeUses bool AllowCompositeIf bool AllowCompositeContinueOnError bool }
CompositeRestrictions is the structure to control what is allowed in composite actions
type ContainerSpec ¶
type ContainerSpec struct { Image string `yaml:"image"` Env map[string]string `yaml:"env"` Ports []string `yaml:"ports"` Volumes []string `yaml:"volumes"` Options string `yaml:"options"` Credentials map[string]string `yaml:"credentials"` Entrypoint string Args string Name string Reuse bool }
ContainerSpec is the specification of the container to use for the job
type Defaults ¶
type Defaults struct {
Run RunDefaults `yaml:"run"`
}
Default settings that will apply to all steps in the job or workflow
type GithubContext ¶
type GithubContext struct { Event map[string]interface{} `json:"event"` EventPath string `json:"event_path"` Workflow string `json:"workflow"` RunID string `json:"run_id"` RunNumber string `json:"run_number"` RunAttempt string `json:"run_attempt"` Actor string `json:"actor"` Repository string `json:"repository"` EventName string `json:"event_name"` Sha string `json:"sha"` Ref string `json:"ref"` HeadRef string `json:"head_ref"` BaseRef string `json:"base_ref"` Token string `json:"token"` Workspace string `json:"workspace"` Action string `json:"action"` ActionPath string `json:"action_path"` ActionRef string `json:"action_ref"` ActionRepository string `json:"action_repository"` Job string `json:"job"` JobName string `json:"job_name"` RepositoryOwner string `json:"repository_owner"` RetentionDays string `json:"retention_days"` RunnerPerflog string `json:"runner_perflog"` RunnerTrackingID string `json:"runner_tracking_id"` }
func (*GithubContext) SetRefAndSha ¶
func (ghc *GithubContext) SetRefAndSha(defaultBranch string, repoPath string)
type Input ¶
type Input struct { Description string `yaml:"description"` Required bool `yaml:"required"` Default string `yaml:"default"` }
Input parameters allow you to specify data that the action expects to use during runtime. GitHub stores input parameters as environment variables. Input ids with uppercase letters are converted to lowercase during runtime. We recommended using lowercase input ids.
type Job ¶
type Job struct { Name string `yaml:"name"` RawNeeds yaml.Node `yaml:"needs"` RawRunsOn yaml.Node `yaml:"runs-on"` Env yaml.Node `yaml:"env"` If yaml.Node `yaml:"if"` Steps []*Step `yaml:"steps"` TimeoutMinutes int64 `yaml:"timeout-minutes"` Services map[string]*ContainerSpec `yaml:"services"` Strategy *Strategy `yaml:"strategy"` RawContainer yaml.Node `yaml:"container"` Defaults Defaults `yaml:"defaults"` Outputs map[string]string `yaml:"outputs"` Result string }
Job is the structure of one job in a workflow
func (*Job) Environment ¶
Environments returns string-based key=value map for a job
func (*Job) GetMatrixes ¶
GetMatrixes returns the matrix cross product It skips includes and hard fails excludes for non-existing keys nolint:gocyclo
type JobContext ¶
type Output ¶
Output parameters allow you to declare data that an action sets. Actions that run later in a workflow can use the output data set in previously run actions. For example, if you had an action that performed the addition of two inputs (x + y = z), the action could output the sum (z) for other actions to use as an input.
type Plan ¶
type Plan struct {
Stages []*Stage
}
Plan contains a list of stages to run in series
func (*Plan) MaxRunNameLen ¶
MaxRunNameLen determines the max name length of all jobs
type RunDefaults ¶
type RunDefaults struct { Shell string `yaml:"shell"` WorkingDirectory string `yaml:"working-directory"` }
Defaults for all run steps in the job or workflow
type Step ¶
type Step struct { ID string `yaml:"id"` If yaml.Node `yaml:"if"` Name string `yaml:"name"` Uses string `yaml:"uses"` Run string `yaml:"run"` WorkingDirectory string `yaml:"working-directory"` Shell string `yaml:"shell"` Env yaml.Node `yaml:"env"` With map[string]string `yaml:"with"` ContinueOnError bool `yaml:"continue-on-error"` TimeoutMinutes int64 `yaml:"timeout-minutes"` }
Step is the structure of one step in a job
func (*Step) Environment ¶
Environments returns string-based key=value map for a step
func (*Step) ShellCommand ¶
ShellCommand returns the command for the shell
func (*Step) Validate ¶
func (s *Step) Validate(config *CompositeRestrictions) error
type StepResult ¶
type StepType ¶
type StepType int
StepType describes what type of step we are about to run
const ( // StepTypeRun is all steps that have a `run` attribute StepTypeRun StepType = iota // StepTypeUsesDockerURL is all steps that have a `uses` that is of the form `docker://...` StepTypeUsesDockerURL // StepTypeUsesActionLocal is all steps that have a `uses` that is a local action in a subdirectory StepTypeUsesActionLocal // StepTypeUsesActionRemote is all steps that have a `uses` that is a reference to a github repo StepTypeUsesActionRemote // StepTypeInvalid is for steps that have invalid step action StepTypeInvalid )
type Strategy ¶
type Strategy struct { FailFast bool MaxParallel int FailFastString string `yaml:"fail-fast"` MaxParallelString string `yaml:"max-parallel"` RawMatrix yaml.Node `yaml:"matrix"` }
Strategy for the job
func (Strategy) GetFailFast ¶
GetFailFast sets default and returns value for `fail-fast`
func (Strategy) GetMaxParallel ¶
GetMaxParallel sets default and returns value for `max-parallel`
type Workflow ¶
type Workflow struct { File string Name string `yaml:"name"` RawOn yaml.Node `yaml:"on"` Env map[string]string `yaml:"env"` Jobs map[string]*Job `yaml:"jobs"` Defaults Defaults `yaml:"defaults"` }
Workflow is the structure of the files in .github/workflows
func ReadWorkflow ¶
ReadWorkflow returns a list of jobs for a given workflow file reader
type WorkflowFiles ¶
type WorkflowFiles struct {
// contains filtered or unexported fields
}
type WorkflowPlanner ¶
type WorkflowPlanner interface { PlanEvent(eventName string) *Plan PlanJob(jobName string) *Plan GetEvents() []string }
WorkflowPlanner contains methods for creating plans
func NewWorkflowPlanner ¶
func NewWorkflowPlanner(path string, noWorkflowRecurse bool) (WorkflowPlanner, error)
NewWorkflowPlanner will load a specific workflow, all workflows from a directory or all workflows from a directory and its subdirectories nolint: gocyclo