Skip to content

2.66 version is not installing with pip in VENV #56

2.66 version is not installing with pip in VENV

2.66 version is not installing with pip in VENV #56

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'
});
}