az-pipelines:tldr:3b62f
az-pipelines: Update a specific pipeline.
$ az pipelines update --org ${organization_url} --project ${project_name} --name ${pipeline_name} --new-name ${pipeline_new_name} --new-folder-path ${user1-production_pipelines}
try on your machine
This command is used to update a pipeline in Azure DevOps.
az pipelines update
is the command that starts the update process.--org ${organization_url}
specifies the organization URL where the pipeline exists.--project ${project_name}
specifies the name of the project where the pipeline belongs.--name ${pipeline_name}
specifies the current name of the pipeline that needs to be updated.--new-name ${pipeline_new_name}
is used to provide the new name for the pipeline after the update.--new-folder-path ${user1-production_pipelines}
is used to specify the new folder path for the pipeline in Azure DevOps.
By running this command, the specified pipeline in the given organization and project will be updated with the provided new name and folder path.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.