ci/update: don't request review on the PR

@github-actions[bot] doesn't have access to nix-community teams, so it
can't request @nix-community/nixvim review the PR.
This commit is contained in:
Matt Sturgeon 2025-01-30 17:38:48 +00:00
parent f028201847
commit f9904d22df
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -39,7 +39,6 @@ jobs:
repo: ${{ github.repository }}
base_branch: ${{ github.ref_name }}
pr_branch: update/${{ github.ref_name }}
team: nix-community/nixvim
steps:
- name: Checkout repository
@ -192,17 +191,14 @@ jobs:
if [[ -n "$pr_num" ]]; then
echo "Editing existing PR #$pr_num"
operation=updated
gh pr edit "$pr_num" \
--body "$body" \
--add-reviewer "$team"
gh pr edit "$pr_num" --body "$body"
else
echo "Creating new PR"
operation=created
gh pr create \
--base "$base_branch" \
--title "$title" \
--body "$body" \
--reviewer "$team"
--body "$body"
fi
pr_info=$(