diff options
author | Derek Bailey <derekbailey@google.com> | 2020-11-05 13:40:01 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-05 13:40:01 -0800 |
commit | bc56c553ec400e5b270de4b0bf26b3591cb050a5 (patch) | |
tree | ee1ae07fc273ec89110031affd6aa6686465720f | |
parent | 07d7cd78a74a69354ce8d3f0cbe961346d17d0a4 (diff) | |
download | flatbuffers-bc56c553ec400e5b270de4b0bf26b3591cb050a5.tar.gz flatbuffers-bc56c553ec400e5b270de4b0bf26b3591cb050a5.tar.bz2 flatbuffers-bc56c553ec400e5b270de4b0bf26b3591cb050a5.zip |
Notify based on Labelling issues and PR (#6241)
-rw-r--r-- | .github/workflows/label_notify.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/label_notify.yml b/.github/workflows/label_notify.yml new file mode 100644 index 00000000..21cad08a --- /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 |