Skip to content

Commit

Permalink
Add discord release notification (#1427)
Browse files Browse the repository at this point in the history
* Automatically send message to discord for new releases
  • Loading branch information
guarin authored Nov 15, 2023
1 parent a5ef7d0 commit 9f2ed93
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/discord_release_notification.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Discord Release Notification

on:
release:
types: [published]

jobs:
notify-discord:
runs-on: ubuntu-latest
steps:
- name: Send Notification to Discord
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
# We truncate the description at the models section (starting with ### Models)
# to keep the message short.
# We have also have to format the release description for it to be valid JSON.
# This is done by piping the description to jq.
run: |
DESCRIPTION=$(echo '${{ github.event.release.body }}' | awk '/### Models/{exit}1' | jq -aRs .)
curl -H "Content-Type: application/json" \
-X POST \
-d @- \
"${DISCORD_WEBHOOK}" << EOF
{
"username": "Lightly",
"avatar_url": "https://avatars.githubusercontent.com/u/50146475",
"content": "Lightly ${{ github.event.release.tag_name }} has been released!",
"embeds": [
{
"title": "${{ github.event.release.name }}",
"url": "${{ github.event.release.html_url }}",
"color": 5814783,
"description": $DESCRIPTION
}
]
}
EOF

0 comments on commit 9f2ed93

Please sign in to comment.