Create slack.yml #1
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
# This workflow sends a message whenever an issue is opened/closed | ||
# | ||
# You can adjust the behavior by modifying this file. | ||
name: Send GitHub Action trigger data to Slack workflow | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
- closed | ||
jobs: | ||
name: Slack Notification | ||
id: slack | ||
uses: slackapi/[email protected] | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |