stale.yml 602 B

1234567891011121314151617
  1. name: Mark stale issues and pull requests
  2. on:
  3. schedule:
  4. - cron: "30 1 * * *"
  5. jobs:
  6. stale:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/stale@v8
  10. with:
  11. repo-token: ${{ secrets.GITHUB_TOKEN }}
  12. stale-issue-message: "This issue is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days"
  13. stale-pr-message: 'It has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days'
  14. days-before-stale: 120
  15. days-before-close: 5