From c437a899f85502dfb4f26409fe978c8dc26ff229 Mon Sep 17 00:00:00 2001 From: Zanie Date: Wed, 25 Oct 2023 15:02:53 -0500 Subject: [PATCH] Fix paths --- .github/workflows/pr-comment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-comment.yaml b/.github/workflows/pr-comment.yaml index 120ad9fe60..8e31372b33 100644 --- a/.github/workflows/pr-comment.yaml +++ b/.github/workflows/pr-comment.yaml @@ -40,7 +40,7 @@ jobs: name: ecosystem-result-check workflow: ci.yaml pr: ${{ steps.pr-number.outputs.pr-number }} - path: pr/ecosystem-check + path: pr/ecosystem if_no_artifact_found: ignore - uses: dawidd6/action-download-artifact@v2 @@ -51,21 +51,21 @@ jobs: name: ecosystem-result-format workflow: ci.yaml pr: ${{ steps.pr-number.outputs.pr-number }} - path: pr/ecosystem-format + path: pr/ecosystem if_no_artifact_found: ignore - name: Generate `check` ecosystem comment if: steps.download-ecosystem-result-check.outputs.found_artifact == 'true' run: | echo '## Ecosystem results `ruff check`' >> comment.txt - cat pr/ecosystem-check >> comment.txt + cat pr/ecosystem/ecosystem-result-check >> comment.txt echo "
" >> comment.txt - name: Generate `format` ecosystem comment if: steps.download-ecosystem-result-format.outputs.found_artifact == 'true' run: | echo '## Ecosystem results `ruff format`' >> comment.txt - cat pr/ecosystem-format >> comment.txt + cat pr/ecosystem/ecosystem-result-format >> comment.txt echo "
" >> comment.txt - name: Check comment