From d32fee0e0fc6241cc999d334faac4db0da5745ce Mon Sep 17 00:00:00 2001 From: fariskamaludin-skymind Date: Wed, 28 Jul 2021 17:51:53 +0800 Subject: [PATCH] :memo: Create an issues auto comment workflow --- .github/workflows/auto_comment.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/auto_comment.yml diff --git a/.github/workflows/auto_comment.yml b/.github/workflows/auto_comment.yml new file mode 100644 index 00000000..d823842d --- /dev/null +++ b/.github/workflows/auto_comment.yml @@ -0,0 +1,21 @@ +name: Issues Auto Comment + +on: + issues: + types: + - opened + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: bubkoo/auto-comment@v1.0.7 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + issuesOpenedReactions: 'hooray, +1' + issuesOpenedComment: > + 👋 @{{ author }} + + Thank you for raising an issue. We will investigate into the matter and get back to you as soon as possible. + + Please make sure you have given us as much context as possible. \ No newline at end of file