From 5dd7082b8b4adfd096fc64ef9bc73ab40b45af9f Mon Sep 17 00:00:00 2001 From: Borja Aranda Date: Mon, 16 May 2022 14:21:06 +0200 Subject: [PATCH] fix(ci): reduce set-motd verbose --- .github/workflows/testing-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing-pr.yml b/.github/workflows/testing-pr.yml index 6860b31cb..51460d1e5 100644 --- a/.github/workflows/testing-pr.yml +++ b/.github/workflows/testing-pr.yml @@ -78,7 +78,7 @@ jobs: continue-on-error: true run: | if [ -f /root/bin/set-motd ]; then - MOTD=$(printf "Title: ${{ github.event.pull_request.title }}\nAuthor: ${{ github.event.pull_request.user.login }}\nBody: ${{ github.event.pull_request.body }}") + MOTD=$(printf "Title: ${{ github.event.pull_request.title }}\nAuthor: ${{ github.event.pull_request.user.login }}") /root/bin/set-motd set -user "ZTPFW Github Actions" -pr "${{ github.event.pull_request.html_url }}" -motd "$MOTD" fi