Skip to content

Commit d6a1ea3

Browse files
authored
Merge pull request #1 from ynab/hide-progress-bar
Hide progress bar when calling curl
2 parents 7781289 + 83bcf3d commit d6a1ea3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ runs:
1717
using: 'composite'
1818
steps:
1919
- run: |
20-
curl -X POST -H "Authorization: Bearer ${{ env.SLACK_BOT_TOKEN || inputs.token }}" -H "Content-Type: application/json" --url https://slack.com/api/chat.postMessage \
20+
curl --silent --show-error -X POST -H "Authorization: Bearer ${{ env.SLACK_BOT_TOKEN || inputs.token }}" -H "Content-Type: application/json" --url https://slack.com/api/chat.postMessage \
2121
-d "{\"channel\": \"${{ inputs.channel }}\", \"text\":\"${{ inputs.text }}\"}"
2222
shell: bash

0 commit comments

Comments
 (0)