Skip to content

Commit

Permalink
Merge pull request #431 from LizardByte/add/discord-notifier
Browse files Browse the repository at this point in the history
Create release-notifier-moonlight.yml
  • Loading branch information
ReenigneArcher authored Oct 25, 2022
2 parents 7ad91e2 + 4769a93 commit 894cb65
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release-notifier-moonlight.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Release Notifications (Moonlight)

on:
release:
types: [published]

jobs:
discord:
runs-on: ubuntu-latest
steps:
- name: discord
uses: sarisia/actions-status-discord@v1 # https://github.com/sarisia/actions-status-discord
with:
webhook: ${{ secrets.DISCORD_RELEASE_WEBHOOK_MOONLIGHT }}
nodetail: true
nofail: false
username: ${{ secrets.DISCORD_USERNAME }}
avatar_url: ${{ secrets.ORG_LOGO_URL }}
title: ${{ github.event.repository.name }} ${{ github.ref_name }} Released
description: ${{ github.event.release.body }}
color: 0xFF4500

0 comments on commit 894cb65

Please sign in to comment.