From 9fb9f443dbd7f09864d3667dca033d7ee8d72c91 Mon Sep 17 00:00:00 2001 From: Pradnya Gaitonde <116059908+PradnyaGaitonde@users.noreply.github.com> Date: Tue, 11 Jun 2024 23:52:22 +0530 Subject: [PATCH] Delete .github/workflow/autocomment_issue.yml --- .github/workflow/autocomment_issue.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflow/autocomment_issue.yml diff --git a/.github/workflow/autocomment_issue.yml b/.github/workflow/autocomment_issue.yml deleted file mode 100644 index 1267417..0000000 --- a/.github/workflow/autocomment_issue.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Auto Comment on Issue - -on: - issues: - types: [opened] - -jobs: - comment: - runs-on: ubuntu-latest - steps: - - name: Add Comment to Issue - env: - GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} - run: | - curl -X POST \ - -H "Authorization: token $GITHUB_TOKEN" \ - -H "Accept: application/vnd.github.v3+json" \ - https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments \ - -d "{\"body\":\"Thank you for creating this issue! 🎉 We'll look into it as soon as possible.\"}"