Justin Dearing
Justin Dearing

Reputation: 14928

Determining arguments passed to devops parameters in a pipeline run

Lets say I have a devops pipeline with parameters defined like so:

parameters:
  - name: example1 
    displayName: Example 1 
    type: string 
    default: "An argument" 
  - name: example2
    displayName: Example 2 
    type: boolean 
    default: true

Which renders like this in the UI:

Pipeline parameters

If I run the pipeline, is there any way to see what arguments I passed to the parameters afterwards on the run screen? I know if the job is finished I can select Run New from build status page, and see the same branch and patameters. However, that is not available if the job has not finished.

Upvotes: 0

Views: 613

Answers (1)

Kevin Lu-MSFT
Kevin Lu-MSFT

Reputation: 35109

Based on your requirement, I suggest that you can click the Target Pipeline run -> Click Job tab -> Check the log: Parent pipeline used these runtime parameters, then you can see the value of the parameters.

For example:

enter image description here

Upvotes: 1

Related Questions