25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
833 B

  1. name: 'Close stale issues'
  2. on:
  3. schedule:
  4. - cron: '00 5 * * *'
  5. workflow_dispatch:
  6. jobs:
  7. stale:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/stale@v3
  11. with:
  12. repo-token: ${{ secrets.GITHUB_TOKEN }}
  13. days-before-close: 7
  14. days-before-stale: 7
  15. only-labels: 'needs-more-info'
  16. close-issue-message: 'Closing this issue because it needs more information and has not had recent activity. Please re-open this issue if more details can be provided. Thanks!'
  17. stale-issue-label: 'inactive'
  18. stale-issue-message: 'This issue needs more information and has not had recent activity. Please provide the missing information or it will be closed in 7 days. Thanks!'