From 6e54d214389a51afe4afeadb07bb40b8dfd09e58 Mon Sep 17 00:00:00 2001 From: Sanmarg Sandeep Paranjpe <50082154+sanmarg@users.noreply.github.com> Date: Tue, 14 May 2024 19:40:15 +0530 Subject: [PATCH] Create greetings.yaml Added For #18 --- .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."