VIH-11294 map object to string for participant status #236
Workflow file for this run
This file contains 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
name: PR Tasks | |
on: | |
pull_request: | |
types: | |
- closed | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
ado_org: 'hmcts' | |
ado_project: 'Video Hearings' | |
ado_pipeline: 'hmcts.vh-video-api.sds.pr-close' | |
pr_number: ${{github.event.pull_request.number}} | |
branch: ${{ github.ref_name }} | |
AZURE_DEVOPS_EXT_PAT: ${{ secrets.AZURE_DEVOPS_TOKEN }} | |
jobs: | |
deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger Pipline | |
shell: pwsh | |
run: | | |
$gitPullRequestId = "${{ env.pr_number }}" | |
$branch="${{ env.branch }}" | |
$pipelineName = "${{ env.ado_pipeline }}" | |
$organisation = "https://dev.azure.com/${{ env.ado_org }}/" | |
$project = "${{ env.ado_project }}" | |
Write-Host "Login to $organisation $project" | |
#az devops login --organization $organisation | |
Write-Host "Get Definition of $pipelineName" | |
$definitions = az pipelines build definition list --name $pipelineName --org $organisation --project $project | ConvertFrom-Json | |
$definitionId = "" | |
if ($definitions.length -gt 0){ | |
$definition = $definitions[0] | |
Write-host $definition | |
$definitionId = $definition.id | |
Write-Host "Trigger PR $gitPullRequestId def $definitionId for branch $branch" | |
az pipelines run --branch $branch --detect $false --folder-path "\" --id $definitionId --org $organisation --project $project --parameters "prNumber=$gitPullRequestId" #--debug | |
} else { | |
Write-Error "No Definition found with name $pipelineName in $organisation proj $project " | |
exit 1 | |
} | |