Reputation: 55
I would like to set a label on Azure Devops task, but not via the built-in label option as you can see on the attached photo.
How can I do it?
Thanks
Upvotes: 0
Views: 1522
Reputation: 18303
The tf.exe
command is available on the build agent. Simply use a command-line script in your pipeline with the appropriate tf command.
- task: Cmdline@2
inputs:
script: 'tf label goodbuild docs /recursive'
Upvotes: 1