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.

stale.yml 887B

1234567891011121314151617181920212223242526272829303132
  1. name: Close stale issues
  2. on:
  3. workflow_dispatch:
  4. schedule:
  5. - cron: "0 0 * * *"
  6. jobs:
  7. stale:
  8. runs-on: ubuntu-latest
  9. permissions:
  10. issues: write
  11. steps:
  12. - uses: actions/stale@v5
  13. with:
  14. repo-token: ${{ secrets.COMMAND_BOT_PAT }}
  15. stale-issue-message: >
  16. This issue has been automatically marked as stale because it has not had
  17. recent activity and seems to be missing some essential information.
  18. It will be closed if no further activity occurs. Thank you
  19. for your contributions.
  20. stale-issue-label: 'stale'
  21. only-labels: 'needs info'
  22. labels-to-remove-when-unstale: 'needs info,stale'
  23. exempt-issue-labels: '1. to develop,2. developing,3. to review,4. to release,security'
  24. days-before-stale: 30
  25. days-before-close: 14
  26. # debug-only: true