-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (32 loc) · 1.24 KB
/
announce-new-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Announce New Release"
on:
release:
types:
- "published"
jobs:
discord:
name: "Discord"
permissions: {}
runs-on: "ubuntu-latest"
steps:
- name: "Send Discord Webhook"
uses: "hugoalh/send-discord-webhook-ghaction@main"
with:
key: "${{secrets.COMMUNITY_DISCORD_PROJECTNEWRELEASEANNOUNCER_WEBHOOK}}"
embeds: |-
- title: "Send Discord Webhook (GitHub Action)"
description: |-
> ${{github.event.repository.description}}
Version ${{github.event.release.name}} (`${{github.event.release.tag_name}}`) just released!
timestamp: "${{github.event.release.published_at}}"
color: "#2088FF"
author:
name: "${{github.event.release.author.login}}"
url: "${{github.event.release.author.html_url}}"
icon_url: "${{github.event.release.author.avatar_url}}"
fields:
- name: "📋 Changelog"
value: "${{github.event.release.html_url}}"
- name: "GitHub"
value: "${{github.event.repository.html_url}}"