summaryrefslogtreecommitdiff
path: root/.github/workflows/discord-closed-issues.yml
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-02-17 02:46:28 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-02-17 02:46:28 +0100
commit9e0dfceede6299f7edb2b897be1c16bc055150bb (patch)
tree7f2df8d0a2da69d1323ceebcf7f0c2e7e14b49b3 /.github/workflows/discord-closed-issues.yml
parentUse automatic sayReady call to synchronize STOMP subscriptions before first turn (diff)
downloadseven-wonders-9e0dfceede6299f7edb2b897be1c16bc055150bb.tar.gz
seven-wonders-9e0dfceede6299f7edb2b897be1c16bc055150bb.tar.bz2
seven-wonders-9e0dfceede6299f7edb2b897be1c16bc055150bb.zip
Disable auto-embeds in Discord notifications
Diffstat (limited to '.github/workflows/discord-closed-issues.yml')
-rw-r--r--.github/workflows/discord-closed-issues.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/discord-closed-issues.yml b/.github/workflows/discord-closed-issues.yml
index f0a2e903..7ade5e51 100644
--- a/.github/workflows/discord-closed-issues.yml
+++ b/.github/workflows/discord-closed-issues.yml
@@ -15,4 +15,4 @@ jobs:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_SEVEN_WONDERS }}
uses: Ilshidur/action-discord@0.3.0
with:
- args: '[Issue #{{ EVENT_PAYLOAD.issue.number }}]({{ EVENT_PAYLOAD.issue.html_url }}) closed: {{ EVENT_PAYLOAD.issue.title }}'
+ args: '[Issue #{{ EVENT_PAYLOAD.issue.number }}](<{{ EVENT_PAYLOAD.issue.html_url }}>) closed: {{ EVENT_PAYLOAD.issue.title }}'
bgstack15