From ef7687eee46c60f97cc77571a5f82fec749a4248 Mon Sep 17 00:00:00 2001 From: Arnab Mondal Date: Sat, 22 Jun 2024 18:48:37 +0530 Subject: [PATCH] Delete .github/workflows/auto-comment-pr-open.yml --- .github/workflows/auto-comment-pr-open.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/auto-comment-pr-open.yml diff --git a/.github/workflows/auto-comment-pr-open.yml b/.github/workflows/auto-comment-pr-open.yml deleted file mode 100644 index 224f45e4..00000000 --- a/.github/workflows/auto-comment-pr-open.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Auto Comment on PR Open - -on: - pull_request: - types: [opened] - -jobs: - comment: - runs-on: ubuntu-latest - - steps: - - name: Add Comment to Opened PR - env: - GITHUB_TOKEN: ${{ secrets.GH_PAT }} - run: | - curl -X POST \ - -H "Authorization: token $GITHUB_TOKEN" \ - -H "Accept: application/vnd.github.v3+json" \ - -d '{"body":"Thank you for your contribution to our project. Your efforts are greatly appreciated. Please note that there might be a delay in the review and merge process . For more details, please read [this discussion](https://github.com/Innovateninjas/Paws-frontend/discussions/475). Thank you for your understanding and patience. 🚀"}' \ - "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"