aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorGravatar Amrou Bellalouna <[email protected]>2023-12-15 11:28:53 +0100
committerGravatar GitHub <[email protected]>2023-12-15 10:28:53 +0000
commit1e414984dfe2ef1af759143a99002bc9bb0fd65c (patch)
treedc45e17268746b43ea10be13aa7d3637796f1a13 /.github/workflows
parentMerge pull request #1181 from python-discord/bulk-create-deleted-messages (diff)
remove --quiet header to get full output (#1182)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/status-embed.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/status-embed.yaml b/.github/workflows/status-embed.yaml
index ead0f5ec..c2399bbd 100644
--- a/.github/workflows/status-embed.yaml
+++ b/.github/workflows/status-embed.yaml
@@ -39,7 +39,7 @@ jobs:
curl -s -H "Authorization: token $GITHUB_TOKEN" ${{ github.event.workflow_run.artifacts_url }} > artifacts.json
DOWNLOAD_URL=$(cat artifacts.json | jq -r '.artifacts[] | select(.name == "pull-request-payload") | .archive_download_url')
[ -z "$DOWNLOAD_URL" ] && exit 1
- wget --quiet --header="Authorization: token $GITHUB_TOKEN" -O pull_request_payload.zip $DOWNLOAD_URL || exit 2
+ wget --header="Authorization: token $GITHUB_TOKEN" -O pull_request_payload.zip $DOWNLOAD_URL || exit 2
unzip -p pull_request_payload.zip > pull_request_payload.json
[ -s pull_request_payload.json ] || exit 3
echo "pr_author_login=$(jq -r '.user.login // empty' pull_request_payload.json)" >> $GITHUB_OUTPUT