Skip to content

Commit c92e153

Browse files
authored
fix: Fix action manifest validation error (#77)
The action manifest used the id `slack` for two steps, which is not allowed. We don't reference this id anywhere, so it has been removed.
1 parent 2490387 commit c92e153

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ runs:
6868
fi
6969
echo "FINAL_TEXT=$FINAL_TEXT" >> "$GITHUB_OUTPUT"
7070
- name: Post to a Slack channel
71-
id: slack
7271
if: ${{ inputs.slack-webhook-url != '' && inputs.channel != '' }}
7372
uses: slackapi/slack-github-action@007b2c3c751a190b6f0f040e47ed024deaa72844
7473
with:
@@ -80,7 +79,6 @@ runs:
8079
"channel": "#${{ inputs.channel }}"
8180
}
8281
- name: Post to a default Slack channel
83-
id: slack
8482
if: ${{ inputs.slack-webhook-url != '' && inputs.channel == '' }}
8583
uses: slackapi/slack-github-action@007b2c3c751a190b6f0f040e47ed024deaa72844
8684
with:

0 commit comments

Comments
 (0)