From c8d0b4dd3f7888911f5ce8afdefe1ca34d94cf8d Mon Sep 17 00:00:00 2001 From: Djamil Legato Date: Wed, 24 Feb 2021 15:34:05 -0800 Subject: [PATCH] Silence curl --- .github/workflows/trigger-skeletons.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/trigger-skeletons.yml b/.github/workflows/trigger-skeletons.yml index 3c99fb325..6b6e9b5c9 100644 --- a/.github/workflows/trigger-skeletons.yml +++ b/.github/workflows/trigger-skeletons.yml @@ -25,14 +25,13 @@ jobs: - name: Make it rain ☔️ run: | SKELETONS=`curl -s "${{secrets.SKELETONS_JSON_LIST}}"` - echo "$SKELETONS" echo "$SKELETONS" | jq -cr '.[]' | while read SKELETON; do KEY=$(echo "$SKELETON" | jq -cr 'keys[0]') VERSION=$(echo "$SKELETON" | jq -cr '.[]') URL="https://api.github.com/repos/${KEY}/actions/workflows/${WORKFLOW}/dispatches" - - echo $KEY - $VERSION - $URL - curl -X POST \ + + curl --silent --output /dev/null + -X POST \ -u "${AUTH}" \ -H "Accept: application/vnd.github.everest-preview+json" \ -H "Content-Type: application/json" \