using html page url link for release bot message

This commit is contained in:
Adam Brown 2022-11-06 20:53:57 +00:00
parent a242f8238d
commit 2e6e21215e
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ const sendReleaseMessage = async (release, config) => {
const content = {
"body": `New release`,
"format": "org.matrix.custom.html",
"formatted_body": `New release rolling out <a href="${release.url}">${release.tag_name}</a>`,
"formatted_body": `New release rolling out <a href="${release.html_url}">${release.tag_name}</a>`,
"msgtype": "m.text"
}
await client.sendEvent(config.matrixRoomId, "m.room.message", content, "")