diff --git a/.github/workflows/close_issue_questions.yml b/.github/workflows/close_issue_questions.yml new file mode 100644 index 0000000000..9b5aaebc47 --- /dev/null +++ b/.github/workflows/close_issue_questions.yml @@ -0,0 +1,26 @@ +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' + });