Adding and enabling all translations from Crowdin #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |