stale.yml 786 B

123456789101112131415161718192021
  1. name: Close stale issues
  2. on:
  3. schedule:
  4. - cron: "30 3 * * *"
  5. jobs:
  6. stale:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/stale@v3
  10. with:
  11. repo-token: ${{ secrets.GITHUB_TOKEN }}
  12. stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs."
  13. close-issue-message: "This issue has been closed due to lack of activity, if this issue still persists, please re-open it."
  14. close-issue-label: "closed-no-issue-activity"
  15. stale-issue-label: "no-issue-activity"
  16. days-before-stale: 15
  17. days-before-close: 90
  18. exempt-issue-labels: "bypass-activity"
  19. exempt-pr-labels: "bypass-activity"