stale.yml 697 B

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