Disable Discord URL embed (#6892)

Bjerg created

Wrapping links in `<` and `>` disables auto-embeds in Discord, even if
it's a markdown-style link.

Closes #6884

Release Notes:

- N/A

Change summary

.github/workflows/release_actions.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

.github/workflows/release_actions.yml 🔗

@@ -20,7 +20,7 @@ jobs:
         id: get-content
         with:
           stringToTruncate: |
-            📣 Zed [${{ github.event.release.tag_name }}](${{ steps.get-release-url.outputs.URL }}) was just released!
+            📣 Zed [${{ github.event.release.tag_name }}](<${{ steps.get-release-url.outputs.URL }}>) was just released!
 
             ${{ github.event.release.body }}
           maxLength: 2000