mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-04 02:39:56 +00:00
28 lines
897 B
YAML
28 lines
897 B
YAML
---
|
|
name: Release Notifications (Moonlight)
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- released # this triggers when a release is published, but does not include prereleases or drafts
|
|
|
|
jobs:
|
|
discord:
|
|
if: >-
|
|
startsWith(github.repository, 'LizardByte/') &&
|
|
!github.event.release.prerelease &&
|
|
!github.event.release.draft
|
|
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
|