Skip to content

Commit

Permalink
Add the ability to check for open pull request to a different repo. (A…
Browse files Browse the repository at this point in the history
…zure#19089)

Co-authored-by: Chidozie Ononiwu <chononiw@microsoft.com>
  • Loading branch information
azure-sdk and chidozieononiwu authored Jun 3, 2021
1 parent 338c6a9 commit 2d177c9
Showing 1 changed file with 25 additions and 10 deletions.
35 changes: 25 additions & 10 deletions eng/common/scripts/Delete-RemoteBranches.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
param(
[Parameter(Mandatory = $true)]
$RepoOwner,
# Use this if a pull request might have been opened from one repo against another.
# E.g Pull request opened from azure-sdk/azure-sdk prBranch --> Azure/azure-sdk baseBranch
$ForkRepoOwner,
[Parameter(Mandatory = $true)]
$RepoName,
[Parameter(Mandatory = $true)]
$BranchPrefix,
[Parameter(Mandatory = $true)]
$AuthToken
)

Expand All @@ -23,6 +30,11 @@ foreach ($branch in $branches)
$head = "${RepoOwner}/${RepoName}:${branchName}"
LogDebug "Operating on branch [ $branchName ]"
$pullRequests = Get-GitHubPullRequests -RepoOwner $RepoOwner -RepoName $RepoName -State "all" -Head $head -AuthToken $AuthToken

if ($ForkRepoOwner)
{
$pullRequests += Get-GitHubPullRequests -RepoOwner $ForkRepoOwner -RepoName $RepoName -State "all" -Head $head -AuthToken $AuthToken
}
}
catch
{
Expand All @@ -31,16 +43,19 @@ foreach ($branch in $branches)
}

$openPullRequests = $pullRequests | ? { $_.State -eq "open" }

if ($openPullRequests.Count -eq 0)
if ($openPullRequests.Count -gt 0)
{
LogDebug "Branch [ $branchName ] in repo [ $RepoName ] has no associated open Pull Request. Deleting Branch"
try{
Remove-GitHubSourceReferences -RepoOwner $RepoOwner -RepoName $RepoName -Ref ($branch.Remove(0,5)) -AuthToken $AuthToken
}
catch {
LogError "Remove-GitHubSourceReferences failed with exception:`n$_"
exit 1
}
LogDebug "Branch [ $branchName ] in repo [ $RepoName ] has open pull Requests. Skipping"
LogDebug $openPullRequests.url
continue
}

LogDebug "Branch [ $branchName ] in repo [ $RepoName ] has no associated open Pull Request. Deleting Branch"
try{
Remove-GitHubSourceReferences -RepoOwner $RepoOwner -RepoName $RepoName -Ref ($branch.Remove(0,5)) -AuthToken $AuthToken
}
catch {
LogError "Remove-GitHubSourceReferences failed with exception:`n$_"
exit 1
}
}

0 comments on commit 2d177c9

Please sign in to comment.