From 2ed157551694235e3aa2ec9055687af86af3ea82 Mon Sep 17 00:00:00 2001 From: harish08102004 Date: Sat, 5 Oct 2024 09:39:29 +0530 Subject: [PATCH] Added automated greetings bot --- .github/workflow/greetings.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflow/greetings.yml diff --git a/.github/workflow/greetings.yml b/.github/workflow/greetings.yml new file mode 100644 index 0000000..704db0e --- /dev/null +++ b/.github/workflow/greetings.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: "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."