Test Notifications to Slack #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: Test Notifications to Slack | |
on: workflow_dispatch | |
jobs: | |
notifications: | |
name: Send Notifications | |
runs-on: ubuntu-latest | |
environment: development | |
steps: | |
- name: Send GitHub Action trigger data to Slack workflow | |
id: slack | |
uses: slackapi/[email protected] | |
with: | |
"Notification Type": "Pull Request" | |
"Notification Link": "Link Link" | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |