v2.1.0 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Notification | |
on: | |
release: | |
types: [ published ] | |
jobs: | |
release-notification: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send Discord Release Notification | |
uses: Kometa-Team/discord-notifications@master | |
with: | |
webhook_id_token: ${{ secrets.RELEASE_WEBHOOK }} | |
release: true | |
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." | |
color: ${{ vars.COLOR_SUCCESS }} | |
username: ${{ vars.BOT_NAME }} | |
avatar_url: ${{ vars.BOT_IMAGE }} | |
author: Kometa Release | |
author_icon_url: ${{ vars.RELEASE_IMAGE }} |