From 8d4971480e4ed97328a8af69df541fae9f8701b5 Mon Sep 17 00:00:00 2001 From: Rafal Paradowski Date: Tue, 19 Nov 2024 12:32:48 +0100 Subject: [PATCH] Test notify_team_new_comment workflow --- .github/workflows/notify_team_new_comment.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/notify_team_new_comment.yml diff --git a/.github/workflows/notify_team_new_comment.yml b/.github/workflows/notify_team_new_comment.yml new file mode 100644 index 0000000..77b56d5 --- /dev/null +++ b/.github/workflows/notify_team_new_comment.yml @@ -0,0 +1,11 @@ +name: Send a slack notification when a contributor comments on issue + +on: + issue_comment: + types: [created] + +jobs: + contributor_issue_comment: + uses: rparadowski/.github/.github/workflows/notify_team_new_comment.yml@12567_issue + secrets: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}