mirror of
https://github.com/Ryujinx/Ryujinx-Mako.git
synced 2025-08-15 22:01:11 +00:00
Remove unneeded workflow files
This commit is contained in:
parent
b031403812
commit
28d835b2df
33
.github/labeler.yml
vendored
33
.github/labeler.yml
vendored
|
@ -1,33 +0,0 @@
|
||||||
audio: 'src/Ryujinx.Audio*/**'
|
|
||||||
|
|
||||||
cpu:
|
|
||||||
- 'src/ARMeilleure/**'
|
|
||||||
- 'src/Ryujinx.Cpu/**'
|
|
||||||
- 'src/Ryujinx.Memory/**'
|
|
||||||
|
|
||||||
gpu:
|
|
||||||
- 'src/Ryujinx.Graphics.*/**'
|
|
||||||
- 'src/Spv.Generator/**'
|
|
||||||
- 'src/Ryujinx.ShaderTools/**'
|
|
||||||
|
|
||||||
'graphics-backend:opengl': 'src/Ryujinx.Graphics.OpenGL/**'
|
|
||||||
'graphics-backend:vulkan':
|
|
||||||
- 'src/Ryujinx.Graphics.Vulkan/**'
|
|
||||||
- 'src/Spv.Generator/**'
|
|
||||||
|
|
||||||
gui:
|
|
||||||
- 'src/Ryujinx/**'
|
|
||||||
- 'src/Ryujinx.Ui.Common/**'
|
|
||||||
- 'src/Ryujinx.Ui.LocaleGenerator/**'
|
|
||||||
- 'src/Ryujinx.Ava/**'
|
|
||||||
|
|
||||||
horizon:
|
|
||||||
- 'src/Ryujinx.HLE/**'
|
|
||||||
- 'src/Ryujinx.Horizon*/**'
|
|
||||||
|
|
||||||
kernel: 'src/Ryujinx.HLE/HOS/Kernel/**'
|
|
||||||
|
|
||||||
infra:
|
|
||||||
- '.github/**'
|
|
||||||
- 'distribution/**'
|
|
||||||
- 'Directory.Packages.props'
|
|
32
.github/reviewers.yml
vendored
32
.github/reviewers.yml
vendored
|
@ -1,32 +0,0 @@
|
||||||
audio:
|
|
||||||
- marysaka
|
|
||||||
|
|
||||||
cpu:
|
|
||||||
- gdkchan
|
|
||||||
- riperiperi
|
|
||||||
- marysaka
|
|
||||||
- LDj3SNuD
|
|
||||||
|
|
||||||
gpu:
|
|
||||||
- gdkchan
|
|
||||||
- riperiperi
|
|
||||||
- marysaka
|
|
||||||
|
|
||||||
gui:
|
|
||||||
- Ack77
|
|
||||||
- emmauss
|
|
||||||
- TSRBerry
|
|
||||||
- marysaka
|
|
||||||
|
|
||||||
horizon:
|
|
||||||
- gdkchan
|
|
||||||
- Ack77
|
|
||||||
- marysaka
|
|
||||||
- TSRBerry
|
|
||||||
|
|
||||||
infra:
|
|
||||||
- marysaka
|
|
||||||
- TSRBerry
|
|
||||||
|
|
||||||
default:
|
|
||||||
- '@developers'
|
|
37
.github/workflows/pr_triage.yml
vendored
37
.github/workflows/pr_triage.yml
vendored
|
@ -1,37 +0,0 @@
|
||||||
name: "Pull Request Triage"
|
|
||||||
on:
|
|
||||||
pull_request_target:
|
|
||||||
types: [opened, ready_for_review]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
triage:
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pull-requests: write
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
# Grab sources to get update_reviewers.py and reviewers.yml
|
|
||||||
- name: Fetch sources
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
# Ensure we pin the source origin as pull_request_target run under forks.
|
|
||||||
fetch-depth: 0
|
|
||||||
repository: Ryujinx/Ryujinx
|
|
||||||
ref: master
|
|
||||||
|
|
||||||
- name: Update labels based on changes
|
|
||||||
uses: actions/labeler@v4
|
|
||||||
with:
|
|
||||||
sync-labels: true
|
|
||||||
dot: true
|
|
||||||
|
|
||||||
- run: pip3 install PyGithub
|
|
||||||
|
|
||||||
- name: Assign reviewers
|
|
||||||
run: |
|
|
||||||
python3 .github/update_reviewers.py ${{ secrets.MAKO_APP_ID }} "MAKO_PRIVATE_KEY" ${{ secrets.MAKO_INSTALLATION_ID }} ${{ github.repository }} ${{ github.event.pull_request.number }} .github/reviewers.yml
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
MAKO_PRIVATE_KEY: ${{ secrets.MAKO_PRIVATE_KEY }}
|
|
Loading…
Reference in a new issue