issue-management-stale-action.yml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. name: Issue management - run stale action
  2. on:
  3. schedule:
  4. # hourly at minute 23
  5. - cron: "23 * * * *"
  6. jobs:
  7. stale:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/stale@v8
  11. with:
  12. repo-token: ${{ secrets.GITHUB_TOKEN }}
  13. days-before-stale: 7
  14. days-before-close: 7
  15. only-labels: "needs author feedback"
  16. stale-issue-label: stale
  17. stale-issue-message: >
  18. This has been automatically marked as stale because it has been marked
  19. as needing author feedback and has not had any activity for 7 days.
  20. It will be closed automatically if there is no response from the author
  21. within 7 additional days from this comment.
  22. stale-pr-label: stale
  23. stale-pr-message: >
  24. This has been automatically marked as stale because it has been marked
  25. as needing author feedback and has not had any activity for 7 days.
  26. It will be closed automatically if there is no response from the author
  27. within 7 additional days from this comment.