From d12e5b85bd02c383dcde8939eadffca352ee56d3 Mon Sep 17 00:00:00 2001 From: Sanmarg Sandeep Paranjpe <50082154+sanmarg@users.noreply.github.com> Date: Mon, 13 May 2024 20:52:44 +0530 Subject: [PATCH] Create greetings.yaml Added Workflow For automated comments #98 --- .github/workflows/greetings.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/greetings.yaml diff --git a/.github/workflows/greetings.yaml b/.github/workflows/greetings.yaml new file mode 100644 index 0000000..1523e3e --- /dev/null +++ b/.github/workflows/greetings.yaml @@ -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: "Hi there! Thanks for opening this issue. We appreciate your contribution to this open-source project. We aim to respond or assign your issue as soon as possible. In the meantime you can star the repo and read the contributing.md" + pr-message: "Welcome to Our repository.🎊 Thank you so much for taking the time to point this out."