From 0b9bc838710e310bc7daecb500f1f77685432935 Mon Sep 17 00:00:00 2001 From: K Om Senapati Date: Sat, 26 Oct 2024 10:11:17 +0530 Subject: [PATCH] Delete .github/workflows/greetings.yml --- .github/workflows/greetings.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml deleted file mode 100644 index 4891cc9..0000000 --- a/.github/workflows/greetings.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Greetings -on: - issues: - types: [opened] - pull_request_target: - types: [opened] - -jobs: - greeting: - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - steps: - - name: Send greeting for issues - if: github.event_name == 'issues' - run: | - echo "::set-output name=message::👋 Thank you @${{ github.actor }} for raising an issue! We appreciate your effort in helping us improve. Our team will review it shortly. Stay tuned!" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Send greeting for pull requests - if: github.event_name == 'pull_request_target' - run: | - echo "::set-output name=message:: 🎉 Thank you @${{ github.actor }} for your contribution! Your pull request has been submitted successfully. A maintainer will review it as soon as possible. We appreciate your support in making this project better." - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}