-
Notifications
You must be signed in to change notification settings - Fork 235
Add a new script to mark package as released from release pipeline #11559
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
praveenkuttappan
merged 5 commits into
Azure:main
from
praveenkuttappan:release_completion
Aug 18, 2025
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c90484e
Add a new script to mark package as released from release pipeline
praveenkuttappan 182eb0a
Update eng/common/scripts/Mark-ReleasePlanCompletion.ps1
praveenkuttappan 65c5829
Fix spacing in the script
praveenkuttappan 1a41747
Update script to check active release plans using package name and pr…
praveenkuttappan f6efef1
Log work item Ids if multiple works items are found for release plan
praveenkuttappan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| param( | ||
| [Parameter(Mandatory = $true)] | ||
| [string]$PackageName, | ||
|
|
||
| [Parameter(Mandatory = $true)] | ||
| [string]$PackageVersion, | ||
praveenkuttappan marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| [Parameter(Mandatory = $false)] | ||
| [int]$MaxCount = 5 | ||
| ) | ||
|
|
||
| <# | ||
| .SYNOPSIS | ||
| Marks release plan completion by identifying pull requests that changed files in a given path. | ||
|
|
||
| .DESCRIPTION | ||
| This script helps to mark release plan completion by finding the active release plans for a package name | ||
|
|
||
| .PARAMETER PackageName | ||
| The package name being released (required) | ||
|
|
||
| .PARAMETER PackageVersion | ||
| The package version being released (required) | ||
|
|
||
| .PARAMETER MaxCount | ||
| Maximum number of recent pull request merges to check (default: 5) | ||
|
|
||
| #> | ||
|
|
||
| Set-StrictMode -Version 3 | ||
| . (Join-Path $PSScriptRoot common.ps1) | ||
| . (Join-Path $PSScriptRoot Helpers DevOps-WorkItem-Helpers.ps1) | ||
|
|
||
| $AzureDevOpsOrganization = "azure-sdk" | ||
| $AzureDevOpsProject = "Release" | ||
| # Check Azure DevOps Release Plan work items if LanguageShort is available | ||
| Write-Host "Checking active release plan work items for package: $PackageName" | ||
| $workItems = Get-ReleasePlanForPackage $PackageName | ||
| if(!$workItems) | ||
| { | ||
| Write-Host "No active release plans found for package name: $PackageName." | ||
| exit 0 | ||
| } | ||
|
|
||
| $activeReleasePlan = $workItems | ||
| if($workItems.Count -gt 1 -and ($workItems -is [System.Array])) | ||
| { | ||
| $concatenatedIds = ($workItems | Select-Object -ExpandProperty id) -join ',' | ||
| Write-Host "Multiple release plans found for package name: $PackageName with work item IDs: $concatenatedIds. Using the first release plan to update release status." | ||
| $activeReleasePlan = $workItems[0] | ||
| } | ||
| # Update release status | ||
| Write-Host "Release plan work item ID: $($activeReleasePlan["id"])" | ||
| Write-Host "Marking release completion for package, name: $PackageName version: $PackageVersion" | ||
| Update-ReleaseStatusInReleasePlan $activeReleasePlan.id "Released" $PackageVersion | ||
| Write-Host "Successfully marked release completion for package, name: $PackageName version: $PackageVersion." | ||
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.
Uh oh!
There was an error while loading. Please reload this page.