Skip to content

Commit

Permalink
Create triage_pr.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 committed Jul 26, 2023
1 parent 5d98f38 commit 168d89c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Documentation - https://github.com/actions/labeler

'RSX':
- 'rpcs3/Emu/RSX/*'
'CPU':
- '**SPU*'
- '**PPU*'
- '**MFC*'
'Overlays':
- '**/RSX/Overlays/*'
'Network':
- '**sys_net/*'
- '**sys_net.cpp'
- '**sys_net.h'
- 'RPCS3/Emu/NP/*'
'Input':
- '**/Input/*'
'GUI':
- 'rpcs3/rpcs3qt/*'
- 'rpcs3/qt/*'
'Firmware: HLE':
- 'rpcs3/Emu/Cell/Modules/*'
17 changes: 17 additions & 0 deletions .github/workflows/triage_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Runs steps to triage an incoming Pull Request, for example - applying labels.
name: Pull Request Triage

on: [pull_request_target]

jobs:
label:
if: github.repository == 'RPCS3/rpcs3'
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write

steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 168d89c

Please sign in to comment.