diff options
author | TSRBerry <20988865+TSRBerry@users.noreply.github.com> | 2023-09-04 19:14:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-04 19:14:20 +0200 |
commit | 34447d73591f87ca5756caa8f8133ef4b58f9a74 (patch) | |
tree | b99393dcf97e89a213fc10e166669898e870d715 | |
parent | 5f771f5661b3f6d77ae15b72727c664d45a37b96 (diff) |
Fix overwriting .ryujinx-mako directory (#5651)
-rw-r--r-- | .github/workflows/pr_triage.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/pr_triage.yml b/.github/workflows/pr_triage.yml index 10666383..076c2825 100644 --- a/.github/workflows/pr_triage.yml +++ b/.github/workflows/pr_triage.yml @@ -12,6 +12,15 @@ jobs: runs-on: ubuntu-latest steps: + # Grab sources to get latest labeler.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: Checkout Ryujinx-Mako uses: actions/checkout@v3 with: @@ -22,15 +31,6 @@ jobs: - name: Setup Ryujinx-Mako uses: ./.ryujinx-mako/.github/actions/setup-mako - # Grab sources to get latest labeler.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: |