CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
lock-threads.yml31 linesDownload Raw Back to workflows
1name: 'Lock Threads'2 3on:4  schedule:5    - cron: '0 0 * * *'6  workflow_dispatch:7 8permissions:9  issues: write10  pull-requests: write11 12concurrency:13  group: lock14 15jobs:16  action:17    runs-on: ubuntu-latest18    steps:19      - uses: jsumners/lock-threads@b27edac0ac998d42b2815e122b6c24b32b56832120        with:21          log-output: true22          issue-inactive-days: '30'23          issue-comment: >24            This issue has been automatically locked since there25            has not been any recent activity after it was closed.26            Please open a new issue for related bugs.27          pr-comment: >28            This pull request has been automatically locked since there29            has not been any recent activity after it was closed.30            Please open a new issue for related bugs.31