Send a message to the channel cyf-nightly #3
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: Send a message to the channel cyf-nightly | |
on: | |
workflow_run: | |
workflows: ["Build CYF"] | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
message: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Discord Webhook Action | |
uses: tsickert/discord-webhook@v5.3.0 | |
with: | |
webhook-url: ${{ secrets.NIGHTLY_WEBHOOK_URL }} | |
content: "The last CYF nightly is ready to be used! Enjoy!" | |
username: "GitHub" | |
avatar-url: "https://avatars.githubusercontent.com/u/21269430?v=4" |