Skip to main content

Create Pipeline

Create a pipeline associated with a particular Azure DevOps project or organization.

External Documentation

To learn more, visit the Azure DevOps documentation.

Basic Parameters

ParameterDescription
Configuration PathThe file path or location where the pipeline configuration file is stored within the source code repository.
Configuration TypeThe method used to define the pipeline's configuration.
OrganizationThe Azure DevOps Organization. You can view the Organizations list in the Azure DevOps Organizations page.
ProjectThe Project ID or Project name. You can view the Projects list in the Azure DevOps Projects page.
Repository IDThe unique identifier of the source code repository that the pipeline will be associated with.
This ID is used to link the pipeline to the appropriate code repository and ensure that changes made to the repository trigger the appropriate pipeline runs.
You can find this out by going to your equivalent https://dev.azure.com/organisation-name/project-name/_settings/repositories
(substituting in appropriate values) and looking up your repository there.
Repository NameThe source code repository name that the pipeline will be associated with.
This name is used for display purposes and can help quickly identify the repository associated with a given pipeline.
Repository TypeThe type of source code repository that the pipeline will be associated with.
This ensures that the API knows how to interact with the repository and perform the appropriate operations, such as cloning the repository and retrieving the source code.

Advanced Parameters

ParameterDescription
FolderThe folder of the pipeline that's being created.
NameThe name of the pipeline that's being created.

Example Output

{
"folder": "Pipeline folder",
"id": 0,
"name": "Pipeline name",
"revision": 0
}

Workflow Library Example

Create Pipeline with Azure Devops and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop