-
Notifications
You must be signed in to change notification settings - Fork 8
31 lines (28 loc) · 1.05 KB
/
lock.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# @format
---
name: 🔒 Lock closed issues and PRs
on:
schedule:
- cron: "30 2 * * *"
jobs:
lock:
if: ${{ github.repository_owner == 'z-shell' }}
name: 🔐 Lock closed issues and PRs
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
concurrency:
group: ci-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
steps:
- uses: dessant/lock-threads@v4
with:
github-token: ${{ secrets.ORG_TOKEN }}
issue-inactive-days: "30"
issue-lock-reason: ""
issue-comment: >
Issue closed and locked due to lack of activity. If you encounter this same issue, please open a new issue and refer to this closed one.
pr-inactive-days: "7"
pr-lock-reason: ""
pr-comment: >
Pull Request closed and locked due to lack of activity. If you'd like to build on this closed PR, you can clone it using this method: https://stackoverflow.com/a/14969986 Then open a new PR, referencing this closed PR in your message.