Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into takahirom/add-describ…
Browse files Browse the repository at this point in the history
…e-tests-based-on-describe-spec/2024-06-25
  • Loading branch information
takahirom committed Jul 6, 2024
2 parents eb095e3 + ddf67e3 commit 82163aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/screenshot-comparison-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
shell: bash
run: |
# Find all the files ending with _compare.png
mapfile -t files_to_add < <(find . -type f -name "*_compare.png")
mapfile -d '' -t files_to_add < <(find . -type f -name "*_compare.png" -print0)
# Check for invalid file names and add only valid ones
exist_valid_files="false"
Expand All @@ -79,7 +79,7 @@ jobs:
BRANCH_NAME: companion_${{ github.event.workflow_run.head_branch }}
run: |
# Find all the files ending with _compare.png
mapfile -t files_to_add < <(find . -type f -name "*_compare.png")
mapfile -d '' -t files_to_add < <(find . -type f -name "*_compare.png" -print0)
# Check for invalid file names and add only valid ones
for file in $files_to_add; do
Expand Down

0 comments on commit 82163aa

Please sign in to comment.