mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 19:01:45 +00:00
f6475cca17
* Adjust workflow paths to exclude all markdown files * editorconfig: Add default charset and adjust indention for a few file types * Reformat README.md and add a link to our documentation * Add generic Mako workflow and remove old Mako steps * editorconfig: Move charset change to a different PR * Update compatibility stats Co-authored-by: Ac_K <Acoustik666@gmail.com> --------- Co-authored-by: Ac_K <Acoustik666@gmail.com>
28 lines
652 B
YAML
28 lines
652 B
YAML
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 latest labeler.yml
|
|
- name: Fetch sources
|
|
uses: actions/checkout@v4
|
|
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@v5
|
|
with:
|
|
sync-labels: true
|
|
dot: true
|