Upstream 2026-06-24 #387
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Codeowner Reviews | |
| # Controls when the workflow will run | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| jobs: | |
| assign-users: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it | |
| - uses: actions/checkout@v7 | |
| #Request reviews | |
| - name: Request reviews | |
| if: github.event.pull_request.draft == false | |
| uses: tgstation/code-reviewers@main | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |