ENG-2302: Add Azure DevOps Pipeline trigger and list - #73
Open
kaustav98255 wants to merge 1 commit into
Open
Conversation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
bhuvansingla
approved these changes
Mar 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds support for triggering Azure DevOps Pipeline runs and listing available pipelines through the Paradime CLI.
Changes
New Files
paradime/core/scripts/azure_pipeline.py— Core implementation for Azure Pipelines operations:trigger_azure_pipelines()— Triggers runs for multiple pipelines in parallel viaThreadPoolExecutortrigger_pipeline_run()— Triggers a single pipeline run via POST to Azure DevOps REST API (v7.1)_get_auth_headers()— Builds Basic auth headers usingbase64(":"+PAT)encoding_wait_for_pipeline_completion()— Polls run status every 5 seconds until terminal state (completed) or timeoutlist_azure_pipelines()— Lists all pipelines in a project with their ID, name, folder, and portal URLparadime/cli/integrations/azure_pipeline.py— CLI command definitions for Azure Pipelines operationsModified Files
paradime/cli/run.py— Registeredazure_pipeline_triggerandazure_pipeline_listcommandsCLI Commands
azure-pipeline-trigger— Trigger Azure DevOps pipeline runsazure-pipeline-list— List all pipelines in an Azure DevOps projectImplementation Details
base64(":"+PAT)in Authorization headerGET /pipelines/{id}/runs/{runId}completedwith result:succeeded,failed,canceledAZURE_DEVOPS_PAT,AZURE_DEVOPS_ORGANIZATION,AZURE_DEVOPS_PROJECTviaenv_click_optionrequestslibrary with Basic auth