Skip to content

Commit

Permalink
Merge pull request #11935 from MisRob/fix-action-again
Browse files Browse the repository at this point in the history
Add missing quotes to the notification GH action
  • Loading branch information
MisRob authored Mar 4, 2024
2 parents caa49ad + 7cf0fba commit 56dc118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/notify_team_new_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Escape title double quotes
id: escape_title
run: |
title=${{ github.event.issue.title }}
title='${{ github.event.issue.title }}'
echo "ISSUE_TITLE=${title//\"/\\\"}" >> "$GITHUB_OUTPUT"
- name: Send message to Slack channel
Expand Down

0 comments on commit 56dc118

Please sign in to comment.