From db2b7ee0b97a68ed41ce88754e74bc64f957df83 Mon Sep 17 00:00:00 2001 From: Nitya Pasrija <97171261+Nitya-Pasrija@users.noreply.github.com> Date: Thu, 28 Dec 2023 01:51:35 +0530 Subject: [PATCH] greeting --- workflows/greeting.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 workflows/greeting.yml diff --git a/workflows/greeting.yml b/workflows/greeting.yml new file mode 100644 index 0000000..1fe8edc --- /dev/null +++ b/workflows/greeting.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Hey Contributor! Congratulations on taking your first ever step into the open-source journney" + pr-message: "Perfection! Your first every PR :) "