From 28cd426351bc8deed38c8ce3dcd36a2caa104413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Paradowski?= Date: Wed, 18 Dec 2024 14:35:35 +0100 Subject: [PATCH] Add notify_team_new_comment github 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..07a837e --- /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: learningequality/.github/.github/workflows/notify_team_new_comment.yml@main + secrets: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}