We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d40c67 + 108dbc2 commit aaa6bc8Copy full SHA for aaa6bc8
1 file changed
slack-deploy-msg/action.yml
@@ -30,11 +30,14 @@ outputs:
30
runs:
31
using: 'composite'
32
steps:
33
+ - name: Clean PR Title
34
+ shell: bash
35
+ run: |
36
+ PR_TITLE=$(echo "${{ github.event.pull_request.title }}" | sed 's/"/\\"/g')
37
+ echo "PR_TITLE=$PR_TITLE" >> $GITHUB_ENV
38
- name: Notify of deployment
39
id: slack
40
uses: slackapi/slack-github-action@v1.26.0
- env:
- PR_TITLE: ${{ github.event.pull_request.title }}
41
with:
42
channel-id: ${{ inputs.channel-id }}
43
update-ts: ${{ inputs.update-message-id }}
0 commit comments