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.

cron-lock.yml 401B

1234567891011121314151617181920212223
  1. name: cron-lock
  2. on:
  3. schedule:
  4. - cron: "0 0 * * *" # every day at 00:00 UTC
  5. workflow_dispatch:
  6. permissions:
  7. issues: write
  8. pull-requests: write
  9. concurrency:
  10. group: lock
  11. jobs:
  12. action:
  13. runs-on: ubuntu-latest
  14. if: github.repository == 'go-gitea/gitea'
  15. steps:
  16. - uses: dessant/lock-threads@v5
  17. with:
  18. issue-inactive-days: 10
  19. pr-inactive-days: 7