discord_webhook.yml

 1on:
 2  release:
 3    types: [published]
 4    
 5jobs:
 6  message:
 7    runs-on: ubuntu-latest
 8    steps:
 9    - name: Discord Webhook Action
10      uses: tsickert/discord-webhook@v5.3.0
11      with:
12        webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
13        content: |
14          📣 Zed ${{ github.event.release.name }} was just released!
15          
16          Restart your Zed or head to https://zed.dev/releases to grab it.
17        
18          ```md
19          ### Changelog
20          
21          ${{ github.event.release.body }}
22          ```