issues.yml 865 B

1234567891011121314
  1. name: Issue closer
  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@v1.1
  9. with:
  10. repo-token: ${{ secrets.GITHUB_TOKEN }}
  11. issue-close-message: "Hi @${issue.user.login},
  12. It looks like the issue template is missing from this issue. Please take a look at the [Contribution Guidelines](https://github.com/roots/guidelines/blob/master/CONTRIBUTING.md), which will tell you **exactly** what your ticket has to contain in order to be processable.
  13. Please **do not** use the issue tracker for personal support requests. Use [Roots Discourse](https://discourse.roots.io/) to ask the Roots community for help, or [hire someone from the community](https://discourse.roots.io/c/jobs)."
  14. issue-pattern: ".*guidelines for Contributing.*"