From f3309b76d1cf4de4f4d1cb23844ecbcc8a65d4ae Mon Sep 17 00:00:00 2001 From: Andre_601 <11576465+Andre601@users.noreply.github.com> Date: Wed, 12 Aug 2020 14:58:04 +0200 Subject: [PATCH] Adding Label commenter --- .github/workflows/label_comment.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/label_comment.yml diff --git a/.github/workflows/label_comment.yml b/.github/workflows/label_comment.yml new file mode 100644 index 0000000..306dec2 --- /dev/null +++ b/.github/workflows/label_comment.yml @@ -0,0 +1,24 @@ +name: Comment + +on: + issues: + types: + - labeled + - unlabeled + pull_request: + types: + - labeled + - unlabeled + +jobs: + give_comment: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v2 + with: + ref: master + - name: Send Issue/Pull request comment + uses: peaceiris/actions-label-commenter@v1.5.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }}