issue-close-require.yml 730 B

1234567891011121314151617181920212223242526
  1. name: Close Issue Awaiting Reply
  2. on:
  3. schedule:
  4. - cron: "0 0 * * *"
  5. permissions:
  6. contents: read
  7. jobs:
  8. issue-close-require:
  9. permissions:
  10. # allow actions-cool/issues-helper to update issues and PRs
  11. issues: write
  12. pull-requests: write
  13. runs-on: ubuntu-latest
  14. if: github.repository == 'twbs/bootstrap'
  15. steps:
  16. - name: awaiting reply
  17. uses: actions-cool/issues-helper@v3
  18. with:
  19. actions: "close-issues"
  20. labels: "awaiting-reply"
  21. inactive-day: 14
  22. body: |
  23. As the issue was labeled with `awaiting-reply`, but there has been no response in 14 days, this issue will be closed. If you have any questions, you can comment/reply.