mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
23 lines
620 B
YAML
23 lines
620 B
YAML
name: Notify Discord on GitHub Release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
github-releases-to-discord:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: GitHub Releases to Discord
|
|
uses: SethCohen/github-releases-to-discord@v1
|
|
with:
|
|
webhook_url: ${{ secrets.WEBHOOK_URL }}
|
|
color: "2105893"
|
|
username: "GitHub"
|
|
avatar_url: "https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png"
|
|
content: "||@everyone||"
|
|
footer_title: "Changelog"
|
|
reduce_headings: true
|