mirror of https://github.com/astral-sh/ruff
Fix paths
This commit is contained in:
parent
3fd64dac83
commit
c437a899f8
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue