From f9904d22df5a15d280bd6313bcec6259097a8a9c Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Thu, 30 Jan 2025 17:38:48 +0000 Subject: [PATCH] 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. --- .github/workflows/update.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d1b14dcf..b0018332 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -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=$(