From 2b61b264a38230409b547a59f752a6bb191ab651 Mon Sep 17 00:00:00 2001 From: Sanmarg Sandeep Paranjpe <50082154+sanmarg@users.noreply.github.com> Date: Thu, 16 May 2024 01:04:41 +0530 Subject: [PATCH] Create greetings.yaml Added for #103 --- .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..704db0e --- /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." + pr-message: "Welcome to Our repository.🎊 Thank you so much for taking the time to point this out."