mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-22 10:05:10 +00:00
28 lines
629 B
YAML
28 lines
629 B
YAML
|
name: "Pull Request Triage"
|
||
|
on:
|
||
|
pull_request_target:
|
||
|
types: [opened, ready_for_review]
|
||
|
|
||
|
jobs:
|
||
|
triage:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
pull-requests: write
|
||
|
|
||
|
steps:
|
||
|
- name: Fetch labeler.yml
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
# Ensure we pin the source origin as pull_request_target run under forks.
|
||
|
fetch-depth: 0
|
||
|
repository: ryujinx-mirror/ryujinx
|
||
|
ref: mirror/master
|
||
|
|
||
|
- name: Update labels based on changes in PR
|
||
|
uses: actions/labeler@v5
|
||
|
with:
|
||
|
sync-labels: true
|
||
|
dot: true
|