You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
659B

  1. name: Close stale issues
  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 30 days with no activity. Remove Stale label or comment or this will be closed in 5 days.'
  13. stale-pr-message: 'This pull request is stale because it has been open 30 days with no activity. Remove Stale label or comment or this will be closed in 5 days.'
  14. days-before-stale: 30
  15. days-before-close: 5
  16. exempt-issue-label: ['documentation', 'tutorial']