diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-02-28 13:12:50 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-02-28 13:12:50 +0100 |
commit | 318d2249f026393b3da3905c690e33b469f32043 (patch) | |
tree | 12fb2af2b560ab472a48687a77b7e31f704e86b4 | |
parent | d03eb3cb5ffeb0d6aa5908caf03862edf35018cb (diff) | |
download | nextcloud-server-318d2249f026393b3da3905c690e33b469f32043.tar.gz nextcloud-server-318d2249f026393b3da3905c690e33b469f32043.zip |
ci: fix request-reviews workflowfix/request-reviews
The team names are not scoped so we must remove the `nextcloud/` part.
Otherwise it fails with "is not a collaborator".
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
-rw-r--r-- | .github/workflows/request-reviews.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/request-reviews.yml b/.github/workflows/request-reviews.yml index edc92c7196e..5834351f7d3 100644 --- a/.github/workflows/request-reviews.yml +++ b/.github/workflows/request-reviews.yml @@ -64,7 +64,7 @@ jobs: -H "Accept: application/vnd.github+json" \ -H "X-GitHub-Api-Version: 2022-11-28" \ '/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/requested_reviewers' \ - -f "team_reviewers[]=nextcloud/server-backend" + -f "team_reviewers[]=server-backend" - name: Assign frontend engineers if: needs.changes.outputs.frontend == 'true' env: @@ -75,4 +75,4 @@ jobs: -H "Accept: application/vnd.github+json" \ -H "X-GitHub-Api-Version: 2022-11-28" \ '/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/requested_reviewers' \ - -f "team_reviewers[]=nextcloud/server-frontend" + -f "team_reviewers[]=server-frontend" |