Skip to content

Commit f9904d2

Browse files
committed
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.
1 parent f028201 commit f9904d2

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/update.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ jobs:
3939
repo: ${{ github.repository }}
4040
base_branch: ${{ github.ref_name }}
4141
pr_branch: update/${{ github.ref_name }}
42-
team: nix-community/nixvim
4342

4443
steps:
4544
- name: Checkout repository
@@ -192,17 +191,14 @@ jobs:
192191
if [[ -n "$pr_num" ]]; then
193192
echo "Editing existing PR #$pr_num"
194193
operation=updated
195-
gh pr edit "$pr_num" \
196-
--body "$body" \
197-
--add-reviewer "$team"
194+
gh pr edit "$pr_num" --body "$body"
198195
else
199196
echo "Creating new PR"
200197
operation=created
201198
gh pr create \
202199
--base "$base_branch" \
203200
--title "$title" \
204-
--body "$body" \
205-
--reviewer "$team"
201+
--body "$body"
206202
fi
207203
208204
pr_info=$(

0 commit comments

Comments
 (0)