diff --git a/.github/workflows/issue-workflow.yml b/.github/workflows/issue-workflow.yml index d39e81e..172fc1f 100644 --- a/.github/workflows/issue-workflow.yml +++ b/.github/workflows/issue-workflow.yml @@ -15,6 +15,6 @@ jobs: run: | msg_text='${{ github.actor }} updated an issue: status: ${{ github.event.issue.state }} - #${{ github.event.issue.number }} ${{ github.event.issue.title }} - ${{ github.event.issue.url }}' + https://github.com/zaneschepke/wgtunnel/issues/${{ github.event.issue.number }}' curl -s -X POST 'https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage' \ -d "chat_id=${{ secrets.TELEGRAM_TO }}&text=${msg_text}&message_thread_id=${{ secrets.TELEGRAM_TOPIC }}" diff --git a/.github/workflows/publish-workflow.yml b/.github/workflows/publish-workflow.yml index 49d0615..126bde0 100644 --- a/.github/workflows/publish-workflow.yml +++ b/.github/workflows/publish-workflow.yml @@ -16,6 +16,6 @@ jobs: msg_text='${{ github.actor }} published a new release: Release: ${{ github.event.release.tag_name }} ${{ github.event.release.body }} - ${{ github.event.release.url }}' + https://github.com/zaneschepke/wgtunnel/releases/tag/${{ github.event.release.tag_name }}' curl -s -X POST 'https://api.telegram.org/bot${{ secrets.TELEGRAM_TOKEN }}/sendMessage' \ -d "chat_id=${{ secrets.TELEGRAM_TO }}&text=${msg_text}&message_thread_id=${{ secrets.TELEGRAM_TOPIC }}"