From af8ca3a3e11dde5cfcf85605710804ca6bde9926 Mon Sep 17 00:00:00 2001 From: vs-amzn <143748543+vs-amzn@users.noreply.github.com> Date: Fri, 22 Sep 2023 16:44:42 -0400 Subject: [PATCH] Create slack.yml Integrate with slack --- .github/workflows/slack.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/slack.yml diff --git a/.github/workflows/slack.yml b/.github/workflows/slack.yml new file mode 100644 index 0000000..d8981ea --- /dev/null +++ b/.github/workflows/slack.yml @@ -0,0 +1,16 @@ +# 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/slack-github-action@v1.24.0 + env: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}