Skip to content

Commit

Permalink
Merge pull request #35757 from hashicorp/b-fix-unlable-on-milestone
Browse files Browse the repository at this point in the history
Correct issue with unlabel-on-milestone-closed
  • Loading branch information
justinretzolk authored Feb 12, 2024
2 parents f06daf8 + 722d56c commit 1914862
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/scripts/unlabel-on-milestone-closed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ main () {
}' --jq '.data.organization.repository.milestone.pullRequests.edges[].node' | jq --raw-output --slurp '.[] | .url')

# gh issues allows passing multiple URLs at once
gh issue edit $ISSUES --remove-label bug
gh issue edit $ISSUES --remove-label prioritized

# gh pr does not allow passing multiple URLs at once
for item in $PULLS; do
gh pr edit "$item" --remove-label bug
gh pr edit "$item" --remove-label prioritized
done
}

Expand Down

0 comments on commit 1914862

Please sign in to comment.