Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
List of pipeline resources referenced by the pipeline.
pipelines: [ pipeline ] # List of pipeline resources.
Definitions that reference this definition: resources
List types
Type | Description |
---|---|
resources.pipelines.pipeline | A pipeline resource. |
Remarks
The resources.pipelines
definition represents a list of pipeline resources. For information and examples of the syntax for an individual pipeline resource in the resources.pipelines
list, see resources.pipelines.pipeline.
Examples
resources:
pipelines:
- pipeline: source-pipeline
source: PipelineTriggerSource
project: FabrikamFiber
trigger: true
- pipeline: other-project-pipeline
source: PipelineTriggerFromOtherProject
project: FabrikamRepo
trigger: true
trigger: none # Only trigger with pipeline resource trigger
pool:
vmImage: ubuntu-latest
- bash: echo $(resources.pipeline.source-pipeline.projectName)
- bash: printenv | sort