mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
23 lines
563 B
Plaintext
23 lines
563 B
Plaintext
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 }}
|