diff --git a/.github/workflows/close_issue_questions.yml b/.github/workflows/close_issue_questions.yml deleted file mode 100644 index 9b5aaebc47..0000000000 --- a/.github/workflows/close_issue_questions.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Close Issue on Specific Text - -on: - issues: - types: [opened] - -permissions: - issues: write - -jobs: - close_issue_if_forbidden_text_found: - runs-on: ubuntu-latest - steps: - - name: Close issue with specific text - uses: actions/github-script@v7 - with: - script: | - const issueBody = context.payload.issue.body; - if (!issueBody.includes('Please do not submit this issue.') || !issueBody.includes('This issue tracker is reserved for bug reports and feature requests.')) - return; - await github.rest.issues.update({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: context.payload.issue.number, - state: 'closed' - });