From b6be3096511ec8504e23fd24ab7ed73b8a4eab7f Mon Sep 17 00:00:00 2001 From: A N U S H <54374648+anushkrishnav@users.noreply.github.com> Date: Sat, 7 Nov 2020 18:46:14 +0530 Subject: [PATCH] Added Greeting Github Actions (#382) * Added Greeting Github Actions * feat: Updated the Message Co-authored-by: danielsagi --- .github/workflows/greetings.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 0000000..e5a6807 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,14 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Hola! @${{ github.actor }} 🥳 , You've just created an Issue!🌟 Thanks for making the Project Better" + pr-message: 'Submitted a PR already ?? @${{ github.actor }} . Sit tight until one of our amazing maintainers review it. Make sure you read the contributing guide' +