Matrix Docker Ansible eploy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

38 行
1.0 KiB

  1. # SPDX-FileCopyrightText: 2017 - 2023 Armin Sebastian
  2. #
  3. # SPDX-License-Identifier: MIT
  4. ---
  5. name: 'Lock Threads'
  6. on: # yamllint disable-line rule:truthy
  7. # Use this to do a dry run from a pull request
  8. # pull_request:
  9. schedule:
  10. - cron: '0 * * * *'
  11. workflow_dispatch:
  12. permissions:
  13. issues: write
  14. pull-requests: write
  15. concurrency:
  16. group: lock-threads
  17. jobs:
  18. action:
  19. if: github.repository == 'spantaleev/matrix-docker-ansible-deploy'
  20. runs-on: ubuntu-latest
  21. steps:
  22. - uses: dessant/lock-threads@v5
  23. with:
  24. add-issue-labels: 'outdated'
  25. issue-comment: >
  26. This issue is locked to prevent necro-posting on closed
  27. issues. Please create a new issue or contact the team members
  28. on Matrix if the problem persists.
  29. pr-comment: >
  30. This pull request has been automatically locked since there
  31. has not been any recent activity after it was closed.
  32. Please open a new issue for related bugs.
  33. process-only: 'issues, prs'