Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

19 linhas
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'