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