From bc56c553ec400e5b270de4b0bf26b3591cb050a5 Mon Sep 17 00:00:00 2001 From: Derek Bailey Date: Thu, 5 Nov 2020 13:40:01 -0800 Subject: [PATCH] Notify based on Labelling issues and PR (#6241) --- .github/workflows/label_notify.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/label_notify.yml diff --git a/.github/workflows/label_notify.yml b/.github/workflows/label_notify.yml new file mode 100644 index 0000000..21cad08 --- /dev/null +++ b/.github/workflows/label_notify.yml @@ -0,0 +1,17 @@ +name: Notify users based on issue labels + +on: + issues: + types: [labeled] + pull_requests: + types: [labeled] + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - uses: jenschelkopf/issue-label-notification-action@1.3 + with: + recipients: | + lua=@dbaileychess + c++=@aardappel \ No newline at end of file -- 2.7.4