File: request-review.yml

package info (click to toggle)
cataclysm-dda 0.H-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 710,808 kB
  • sloc: cpp: 524,019; python: 11,580; sh: 1,228; makefile: 1,169; xml: 507; javascript: 150; sql: 56; exp: 41; perl: 37
file content (26 lines) | stat: -rw-r--r-- 729 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Auto request review


on:
  pull_request_target:
    types: [opened, synchronize, ready_for_review, reopened]


concurrency:
  group: request-review-${{ github.event.pull_request.number }}
  cancel-in-progress: true


jobs:
  auto-request-review:
    # Do not spam reviewer with PRs in forks. If fork owners wish to alert
    # people of their changes they may change this line themselves.
    if: github.repository == 'CleverRaven/Cataclysm-DDA'
    name: Auto request review
    runs-on: ubuntu-latest
    steps:
      - name: Request review
        uses: qrox/auto-request-review@481e6cd2f5d57b6e914d81ca731211384a76798f
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          config: .github/reviewers.yml