1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

Create triage_pr.yml

This commit is contained in:
Eladash 2023-07-26 20:59:16 +03:00 committed by Elad Ashkenazi
parent 57324f1703
commit c0fadaa374
2 changed files with 39 additions and 0 deletions

22
.github/labeler.yml vendored Normal file
View File

@ -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
.github/workflows/triage_pr2.yml vendored Normal file
View File

@ -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 }}"