Relative Content

Tag Archive for azure-devopsazure-pipelinesazure-pipelines-yaml

Job Conditions in Azure Pipelines

In my yaml pipeline I have multiple jobs which are dependent on each other. However in one of the jobs when I define the condition, I am getting the following error:

Read template in parameters list Azure devops yaml

parameters: – name: XYZ type: object default: – template: “/Pipelines/Templates/QA/XYZ.yaml” – name: ZYX type: object default: – template: “/Pipelines/Templates/QA/ZYX.yaml” in the templates I have the parameters list like that: /Pipelines/Templates/QA/XYZ.yaml: – projectName: X display_name: Y – projectName: T display_name: R And it’s not reading the content… Is that the right way to implement template content […]

re-run run with a single stage

I know that it is possible to re-run a certain stage in yaml, but if my pipeline has a single stage, seems that the stage box (where the re-run button is) is not available. How can I re-run a single stage run?