diff --git a/.github/workflows/visual.yml b/.github/workflows/visual.yml index 92b46a67a..a050f4083 100644 --- a/.github/workflows/visual.yml +++ b/.github/workflows/visual.yml @@ -114,11 +114,11 @@ jobs: if: github.ref != 'refs/heads/main' run: | if ! npm run full-test; then - echo "result='Tests failed! '" >> $GITHUB_OUTPUT + echo "result=Tests failed!" >> $GITHUB_OUTPUT else - echo "result='Tests passed! '" >> $GITHUB_OUTPUT + echo "result=Tests passed!" >> $GITHUB_OUTPUT fi - echo "output_url='You can check the output here: https://city-of-helsinki.github.io/drupal-hdbt/pull/${{ github.event.pull_request.number }}/html_report/'" >> $GITHUB_OUTPUT + echo "output_url=You can check the output here: https://city-of-helsinki.github.io/drupal-hdbt/pull/${{ github.event.pull_request.number }}/html_report/" >> $GITHUB_OUTPUT - name: Find Comment uses: peter-evans/find-comment@v3