Skip to content

Commit

Permalink
Force HTTP1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Mondlicht1 committed Mar 7, 2024
1 parent bb64319 commit dc7e9ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notify-slack/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ inputs:
color:
description: 'Color of the message'
required: false
default: 'Good'
default: 'good'

runs:
using: composite
steps:
- name: Notify Slack Channel
shell: bash
run: |
curl "${{ inputs.slack-webhook }}" "-XPOST -H 'Content-Type: application/json'"
curl "${{ inputs.slack-webhook }}" "-XPOST -H 'Content-Type: application/json'" --http1.1

Check notice on line 30 in notify-slack/action.yml

View workflow job for this annotation

GitHub Actions / Check Spelling

`Line` matches candidate pattern `(?:^|[\t ,"'`=(])-[DPWXYLlf](?=[A-Z]{2,}|[A-Z][a-z]|[a-z]{2,})` (candidate-pattern)
--data '{
"username": "${{ inputs.slack-username }}",
"channel": "${{ inputs.slack-channel }}",
Expand Down

0 comments on commit dc7e9ca

Please sign in to comment.