Settings which influence pipeline runs.

interface RunPipelineParameters {
    previewRun?: boolean;
    resources?: RunResourcesParameters;
    stagesToSkip?: string[];
    templateParameters?: { [key: string]: string };
    variables?: { [key: string]: Variable };
    yamlOverride?: string;
}

Properties

previewRun?: boolean

If true, don't actually create a new run. Instead, return the final YAML document after parsing templates.

The resources the run requires.

stagesToSkip?: string[]
templateParameters?: { [key: string]: string }
variables?: { [key: string]: Variable }
yamlOverride?: string

If you use the preview run option, you may optionally supply different YAML. This allows you to preview the final YAML document without committing a changed file.