Skip to content

Commit

Permalink
ci/update: don't request review on the PR
Browse files Browse the repository at this point in the history
@github-actions[bot] doesn't have access to nix-community teams, so it
can't request @nix-community/nixvim review the PR.
  • Loading branch information
MattSturgeon committed Jan 30, 2025
1 parent f028201 commit f9904d2
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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=$(
Expand Down

0 comments on commit f9904d2

Please sign in to comment.