issue_closer.yml 778 B

1234567891011121314151617181920212223242526
  1. name: Issue closer
  2. on:
  3. issues:
  4. types: [opened, edited, reopened]
  5. jobs:
  6. autoclose:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - name: Autoclose issues
  10. uses: arkon/[email protected]
  11. with:
  12. repo-token: ${{ secrets.GITHUB_TOKEN }}
  13. rules: |
  14. [
  15. {
  16. "type": "body",
  17. "regex": ".*DELETE THIS SECTION IF YOU HAVE READ AND ACKNOWLEDGED IT.*",
  18. "message": "The acknowledgment section was not removed."
  19. },
  20. {
  21. "type": "body",
  22. "regex": ".*\\* (Tachiyomi version|Android version|Device): \\?.*",
  23. "message": "Requested information in the template was not filled out."
  24. }
  25. ]