diff options
| author | TSRBerry <20988865+TSRBerry@users.noreply.github.com> | 2023-09-05 00:55:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-05 00:55:04 +0200 |
| commit | fbe0c211c1e1c9ccf5664e4008e7098581cf7815 (patch) | |
| tree | fa1ff810037882e3e4f761c754081f9c1320ed92 /.github/workflows | |
| parent | db0f3c0b747e84b7400274127bece49988c7e246 (diff) | |
Use poetry run instead of spawning a shell (#5653)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pr_triage.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/pr_triage.yml b/.github/workflows/pr_triage.yml index a31806f9..e1c7b8ae 100644 --- a/.github/workflows/pr_triage.yml +++ b/.github/workflows/pr_triage.yml @@ -39,8 +39,7 @@ jobs: - name: Assign reviewers run: | - poetry -C .ryujinx-mako shell - ryujinx-mako update-reviewers ${{ github.repository }} ${{ github.event.pull_request.number }} .github/reviewers.yml + poetry -n -C .ryujinx-mako run ryujinx-mako update-reviewers ${{ github.repository }} ${{ github.event.pull_request.number }} .github/reviewers.yml shell: bash env: MAKO_APP_ID: ${{ secrets.MAKO_APP_ID }} |
