From 9b3b8890f98683e60fee74932fb0d8b43dca46c3 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Thu, 20 May 2021 14:34:18 -0700 Subject: [PATCH] Test multiline link report v1 --- .github/workflows/link-checker-pr.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/link-checker-pr.yml b/.github/workflows/link-checker-pr.yml index 82102ecfbe..c73e1928f4 100644 --- a/.github/workflows/link-checker-pr.yml +++ b/.github/workflows/link-checker-pr.yml @@ -40,7 +40,9 @@ jobs: if: always() run: | sed -i '1,/---------------------------------------/d' linkreport.txt - echo "::set-output name=linkreport::$(cat linkreport.txt)" + + # old way of setting the link report to an env var + # echo "::set-output name=linkreport::$(cat linkreport.txt)" - name: Comment Broken Links uses: unsplash/comment-on-pr@master @@ -48,5 +50,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} if: always() with: - msg: ${{steps.checker.outputs.linkreport}} + # msg: ${{steps.checker.outputs.linkreport}} + msg: $(cat linkreport.txt) check_for_duplicate_msg: false