* 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>
32 lines
726 B
PowerShell
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
|
|
} |