My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

close-stale.yml 554B

12345678910111213141516171819202122
  1. #
  2. # close-stale.yml
  3. # Close open issues after a period of inactivity
  4. #
  5. name: "Close stale issues"
  6. on:
  7. schedule:
  8. - cron: "56 * * * *"
  9. jobs:
  10. stale:
  11. runs-on: ubuntu-latest
  12. steps:
  13. - uses: actions/stale@v3
  14. with:
  15. repo-token: ${{ secrets.GITHUB_TOKEN }}
  16. stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label / comment or this will be closed in 5 days.'
  17. days-before-stale: 30
  18. days-before-close: 5
  19. stale-issue-label: 'stale-closing-soon'