Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # SPDX-FileCopyrightText: 2017 - 2023 Armin Sebastian
- #
- # SPDX-License-Identifier: MIT
-
- ---
- name: 'Lock Threads'
- on: # yamllint disable-line rule:truthy
- # Use this to do a dry run from a pull request
- # pull_request:
- schedule:
- - cron: '0 * * * *'
- workflow_dispatch:
-
- permissions:
- issues: write
- pull-requests: write
-
- concurrency:
- group: lock-threads
-
- jobs:
- action:
- if: github.repository == 'spantaleev/matrix-docker-ansible-deploy'
- runs-on: ubuntu-latest
- steps:
- - uses: dessant/lock-threads@v5
- with:
- add-issue-labels: 'outdated'
- issue-comment: >
- This issue is locked to prevent necro-posting on closed
- issues. Please create a new issue or contact the team members
- on Matrix if the problem persists.
- pr-comment: >
- This pull request has been automatically locked since there
- has not been any recent activity after it was closed.
- Please open a new issue for related bugs.
- process-only: 'issues, prs'
|