repair=True inconsistent behaviour #55
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto-close issues using default template | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| check-template: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check if issue uses custom template | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const issue = context.payload.issue; | |
| const body = issue.body || ''; | |
| const title = issue.title || ''; | |
| const textToCheck = (title + ' ' + body).toLowerCase(); | |
| // Check for specific fields from your custom form | |
| const hasCustomFields = body.includes('### Describe bug') || | |
| body.includes('### Simple code that reproduces'); | |
| // Check for bug-related keywords | |
| const bugKeywords = ['bug', 'problem', 'broken']; | |
| const looksBugReport = bugKeywords.some(keyword => textToCheck.includes(keyword)); | |
| // Only close if it looks like a bug report but doesn't use the template | |
| if (!hasCustomFields && looksBugReport) { | |
| await github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: issue.number, | |
| body: 'This issue appears to be a bug report but doesn\'t use our bug report template. Resubmit with our custom bug report form..' | |
| }); | |
| await github.rest.issues.update({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: issue.number, | |
| state: 'closed' | |
| }); | |
| } |