azure-sdk-for-cpp/eng/common/scripts/Remove-IssueLabel.ps1
Azure SDK Bot d646629655
Sync eng/common directory with azure-sdk-tools for PR 9656 (#6366)
* Added label handle sdk-gen pipeline template

Added common script to delete label from a PR

* Update eng/common/scripts/Invoke-GitHubAPI.ps1

Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>

---------

Co-authored-by: ray chen <raychen@microsoft.com>
Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>
2025-01-22 15:30:17 -08:00

32 lines
726 B
PowerShell

[CmdletBinding(SupportsShouldProcess = $true)]
param(
[Parameter(Mandatory = $true)]
[string]$RepoOwner,
[Parameter(Mandatory = $true)]
[string]$RepoName,
[Parameter(Mandatory = $true)]
[string]$IssueNumber,
[Parameter(Mandatory = $true)]
[string]$LabelName,
[Parameter(Mandatory = $true)]
[string]$AuthToken
)
. (Join-Path $PSScriptRoot common.ps1)
try {
Remove-GitHubIssueLabel -RepoOwner $RepoOwner -RepoName $RepoName `
-IssueNumber $IssueNumber -LabelName $LabelName -AuthToken $AuthToken
}
catch {
if ($_.Exception.Response.StatusCode -eq 404) {
LogWarning "Label $LabelName not found on issue"
exit 0
}
LogError "Remove-GithubIssueLabel failed with exception:`n$_"
exit 1
}