We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f028201 commit f9904d2Copy full SHA for f9904d2
.github/workflows/update.yml
@@ -39,7 +39,6 @@ jobs:
39
repo: ${{ github.repository }}
40
base_branch: ${{ github.ref_name }}
41
pr_branch: update/${{ github.ref_name }}
42
- team: nix-community/nixvim
43
44
steps:
45
- name: Checkout repository
@@ -192,17 +191,14 @@ jobs:
192
191
if [[ -n "$pr_num" ]]; then
193
echo "Editing existing PR #$pr_num"
194
operation=updated
195
- gh pr edit "$pr_num" \
196
- --body "$body" \
197
- --add-reviewer "$team"
+ gh pr edit "$pr_num" --body "$body"
198
else
199
echo "Creating new PR"
200
operation=created
201
gh pr create \
202
--base "$base_branch" \
203
--title "$title" \
204
205
- --reviewer "$team"
+ --body "$body"
206
fi
207
208
pr_info=$(
0 commit comments