> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Run Pipeline

Trigger a new pipeline run manually.

<Note>
  External Documentation

  To learn more, visit the [Azure DevOps documentation](https://learn.microsoft.com/en-us/rest/api/azure/devops/pipelines/runs/run-pipeline?view=azure-devops-rest-7.2).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter    | Description                                                                                                                                                                                                                                                                                                                                            |
  | ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Organization | The Azure DevOps Organization. You can view the Organizations list in the [Azure DevOps Organizations page](https://portal.azure.com/#blade/AzureTfsExtension/OrganizationsTemplateBlade).                                                                                                                                                             |
  | Pipeline ID  | The unique identifier of the pipeline. You can find the Pipeline ID by navigating to the Pipelines tab of the project where the pipeline is defined.<br />You can find the desired project by navigating to the [Azure DevOps Projects page](https://portal.azure.com/#view/HubsExtension/BrowseResource/resourceType/Microsoft.DevCenter%2Fprojects). |
  | Project      | The Project ID or Project name. You can view the Projects list in the [Azure DevOps Projects page](https://portal.azure.com/#view/HubsExtension/BrowseResource/resourceType/Microsoft.DevCenter%2Fprojects).                                                                                                                                           |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter           | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
  | ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Pipeline Version    | The version of the pipeline configuration. You can find the Pipeline version by navigating to the Pipelines tab of the project where the pipeline is defined.<br />You can find the desired project by navigating to the [Azure DevOps Projects page](https://portal.azure.com/#view/HubsExtension/BrowseResource/resourceType/Microsoft.DevCenter%2Fprojects).                                                                                                                           |
  | Preview Run         | If true, don't actually create a new run. Instead, return the final YAML document after parsing templates.                                                                                                                                                                                                                                                                                                                                                                                |
  | Stages To Skip      | Allows to specify one or more stages of the pipeline to skip during a preview run.                                                                                                                                                                                                                                                                                                                                                                                                        |
  | Template Parameters | Allows to pass parameters to a pipeline template during a preview run.<br />Here are some examples of template parameters:<br /><br />\* environment - specifies the environment that the pipeline will be run in. For example Environment=production.<br />\* branchName - specifies the branch of the code repository that the pipeline will be run against. For example branchName=test.<br />\* debug - Enable or disable debug mode during the pipeline run. For example debug=true. |
  | Variables           | Pass custom configuration settings, such as database connection strings, API keys, or other runtime settings that are required for the pipeline to execute successfully.<br />The syntax will look like the following:<br /><br />`<variable_name>=<variable_value>`<br /><br />For example:<br />databaseConnectionString=myserver<br />database=mydatabase.                                                                                                                             |
  | Yaml Override       | Override the pipeline configuration defined in the repository.                                                                                                                                                                                                                                                                                                                                                                                                                            |
</div>

## Example Output

```json theme={"dark"}
{
	"count": 304,
	"value": []
}
```

## Workflow Library Example

[Run an Azure Devops Pipeline on Merged Github Pull Request](https://library.blinkops.com/workflows/run-an-azure-devops-pipeline-on-merged-github-pull-request)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/run-an-azure-devops-pipeline-on-merged-github-pull-request/canvas" />
</div>
