Plex-Meta-Manager/.github/workflows/release-notification.yml

25 lines
881 B
YAML
Raw Normal View History

2024-05-31 13:59:14 +00:00
name: Release Notification
2022-03-08 21:35:10 +00:00
on:
release:
types: [ published ]
jobs:
release-notification:
2022-03-08 21:35:10 +00:00
runs-on: ubuntu-latest
steps:
- name: Send Discord Release Notification
2024-04-22 14:20:12 +00:00
uses: Kometa-Team/discord-notifications@master
2022-03-08 21:35:10 +00:00
with:
2024-04-23 15:33:27 +00:00
webhook_id_token: ${{ secrets.RELEASE_WEBHOOK }}
2022-03-18 19:21:36 +00:00
release: true
2024-04-22 14:20:12 +00:00
title: Release VERSION
message: "<@&967002324646113290> - A new version of Kometa has been released and is available to all users.\n\nWe **strongly** recommend users who previously switched to the `nightly` or `develop` branches to resolve any previous issues to now switch back to the `latest` branch now."
2024-05-14 20:53:26 +00:00
color: ${{ vars.COLOR_SUCCESS }}
username: ${{ vars.BOT_NAME }}
avatar_url: ${{ vars.BOT_IMAGE }}
2024-04-22 14:20:12 +00:00
author: Kometa Release
2024-05-14 20:53:26 +00:00
author_icon_url: ${{ vars.RELEASE_IMAGE }}