Azure DevOps 管道 运行 描述
Azure DevOps pipline run descriptions
我们有一个 ADO YAML 管道,它 运行 基于 运行 时选择的变量和参数。
有没有办法将选定的参数放入 运行 的描述/名称中,使在 运行 时选择的选项一目了然?
是的,您可以使用此命令设置内部版本号
teps:
- script: echo "##vso[build.updatebuildnumber]$(CustomValue)"
Here 是这方面的文档。
您还可以在 YAML 中使用 name
元素:
parameters:
- name: ProjectName
type: string
default: Default
name: "${{ parameters.ProjectName }}-Build-$(CustomValue)"
steps:
- # build your project here
...
我们有一个 ADO YAML 管道,它 运行 基于 运行 时选择的变量和参数。
有没有办法将选定的参数放入 运行 的描述/名称中,使在 运行 时选择的选项一目了然?
是的,您可以使用此命令设置内部版本号
teps:
- script: echo "##vso[build.updatebuildnumber]$(CustomValue)"
Here 是这方面的文档。
您还可以在 YAML 中使用 name
元素:
parameters:
- name: ProjectName
type: string
default: Default
name: "${{ parameters.ProjectName }}-Build-$(CustomValue)"
steps:
- # build your project here
...