-
-
Save gjonespf/ca74edc6048053ed29f52bf3d76bcb2b to your computer and use it in GitHub Desktop.
Azure Pipelines Task to Post Comment to Linked Work Items (Bash)
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
| - bash: | # Access Token should need Build Read, Work Item Read & Write, Member Entitlement Management Read | |
| curl -u [email protected]:access-token-xxxxxxxxxxx https://dev.azure.com/{organisation}/{project}/_apis/build/builds/$(build.buildId)/workitems?api-version=6.0 | jq '.value[] | .id' | | |
| while IFS=$"\n" read -r c; do | |
| wid=$(echo $c | tr -dc '0-9') | |
| echo | |
| echo Posting status to work item: $wid | |
| echo | |
| curl -u [email protected]:access-token-xxxxxxxxxxx https://dev.azure.com/{organisation}/{project}/_apis/wit/workItems/$wid/comments?api-version=6.0-preview.3 -X POST --data '{"text": "Build $(Build.BuildNumber) completed with status: $(Agent.JobStatus)"}' -H 'Content-Type: application/json' | |
| echo | |
| done | |
| displayName: 'Post status to work items' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment