From fac7cbae253c8e662c52ce62e325d4bcd6590333 Mon Sep 17 00:00:00 2001 From: SyncIt21 <110812394+SyncIt21@users.noreply.github.com> Date: Mon, 8 Jun 2026 11:08:10 +0530 Subject: [PATCH] Use new `tgstation/code-reviewers` github action (#96346) ## About The Pull Request Replaces the existing code reviewer's workflow with the new [one](https://github.com/tgstation/code-reviewers) See [here](https://github.com/tgstation/code-reviewers/pull/1) on why this is better. ## Changelog N/A --- .github/workflows/codeowner_reviews.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/codeowner_reviews.yml b/.github/workflows/codeowner_reviews.yml index f1cb174de37..f81647e76eb 100644 --- a/.github/workflows/codeowner_reviews.yml +++ b/.github/workflows/codeowner_reviews.yml @@ -14,16 +14,9 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it - uses: actions/checkout@v6 - #Parse the Codeowner file on non draft PRs - - name: CodeOwnersParser - if: github.event.pull_request.draft == false - id: CodeOwnersParser - uses: tgstation/CodeOwnersParser@v1 - - #Request reviews + #Request reviews - name: Request reviews - if: steps.CodeOwnersParser.outputs.owners != '' - uses: tgstation/RequestReviewFromUser@v1 + if: github.event.pull_request.draft == false + uses: tgstation/code-reviewers@main with: - separator: " " - users: ${{ steps.CodeOwnersParser.outputs.owners }} + token: ${{ secrets.GITHUB_TOKEN }}