mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 13:10:54 +00:00
22 lines
537 B
YAML
22 lines
537 B
YAML
|
on:
|
||
|
release:
|
||
|
types: [published]
|
||
|
|
||
|
jobs:
|
||
|
message:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Discord Webhook Action
|
||
|
uses: tsickert/discord-webhook@v5.3.0
|
||
|
with:
|
||
|
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
||
|
content: |
|
||
|
📣 Zed ${{ github.event.release.name }} was just released!
|
||
|
|
||
|
Restart your Zed or head to https://zed.dev/releases to grab it.
|
||
|
|
||
|
```md
|
||
|
### Changelog
|
||
|
|
||
|
${{ github.event.release.body }}
|
||
|
```
|