Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

19 righe
600 B

  1. name: 'Lock closed issues'
  2. on:
  3. schedule:
  4. - cron: '30 5 * * *'
  5. workflow_dispatch:
  6. jobs:
  7. stale:
  8. runs-on: ubuntu-latest
  9. permissions:
  10. issues: write
  11. steps:
  12. - uses: dessant/lock-threads@v3
  13. with:
  14. github-token: ${{ secrets.GITHUB_TOKEN }}
  15. issue-comment: 'This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.'
  16. issue-inactive-days: 30
  17. process-only: 'issues'