We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e34f3bc commit 38c87f0Copy full SHA for 38c87f0
1 file changed
.github/workflows/sync-element-web.yml
@@ -81,7 +81,11 @@ jobs:
81
curl -s https://api.github.com/repos/element-hq/element-web/releases/tags/${{ steps.release.outputs.tag }} \
82
| jq -r '.body' > ./changelog-excerpt.md
83
echo "Release notes fetched from GitHub"
84
-
+
85
+ # Neutralize @-mentions (insert zero-width space after '@')
86
+ perl -CS -pe 's/@/@\x{200B}/g' ./changelog-excerpt.md > ./changelog-excerpt.sanitized.md
87
+ mv ./changelog-excerpt.sanitized.md ./changelog-excerpt.md
88
89
- name: Notify via GitHub issue
90
if: steps.release.outputs.skip != 'true'
91
uses: peter-evans/create-issue-from-file@v5
0 commit comments