Fix paths

This commit is contained in:
Zanie 2023-10-25 15:02:53 -05:00
parent 3fd64dac83
commit c437a899f8
1 changed files with 4 additions and 4 deletions

View File

@ -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 "<br />" >> 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 "<br />" >> comment.txt
- name: Check comment