Changelogger inputs update #13
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: "Discord changelogger" | |
on: | |
pull_request_target: | |
branches: | |
- master | |
types: [closed] | |
jobs: | |
send_changelog: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
name: Send a changelog to the Discord server | |
steps: | |
- name: Generate and send message | |
uses: SerbiaStrong-220/ss220-DiscordCLAct@main | |
with: | |
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }} | |
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }} |