azure-devops-cli-extension
azure-devops-cli-extension copied to clipboard
[Feature Request] Project show command to list tags
Is your feature request related to a problem? Please describe.
It would be useful if the az devops project show command could show tags added to a project. We would like to iterate over all projects that have a certain tag and configure them accordingly, add service connections etc. Cannot find any commands that show tags though, so that idea became quite difficult.
Describe the solution you'd like Tags included in show command as a list of strings.
{
name: "Project",
tags: ["azure", "tag"],
...
}
This will require other commands as well like adding new tags or deleting them.
For full project tags management I think we will need another command group under az devops project.
REST API - https://docs.microsoft.com/en-us/rest/api/azure/devops/core/projects/set%20project%20properties?view=azure-devops-rest-5.0#operation
az devops project tag add
az devops project tag list
az devops project tag delete
The other alternative is to combine these into the project create, show, update commands.
How is this question? We have the same need here at the company, it would be very useful to be able to add/update/delete/list the tags of a project.
We also need the same thing to allow reporting against the projects based on different criteria.