auto-close.yml 589 B

12345678910111213
  1. name: Autocloser
  2. on: [issues]
  3. jobs:
  4. autoclose:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - name: Autoclose issues that did not follow issue template
  8. uses: roots/issue-closer-action@v1.1
  9. with:
  10. repo-token: ${{ secrets.GITHUB_TOKEN }}
  11. issue-close-message: "This issue was automatically closed because it did not follow the issue template."
  12. issue-pattern: "Which API(.|[\\r\\n])*Minimal reproduction project(.|[\\r\\n])*To Reproduce|To which pages(.|[\\r\\n])*Describe your suggestion|Is your feature request(.|[\\r\\n])*Describe the solution you'd like"