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.\"}"