File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Lock Threads
2+
3+ # **What it does**: Automatically locks inactive issues and pull requests.
4+ # **Why we have it**: Helps maintainers manage repository activity and reduce clutter.
5+
6+ on :
7+ workflow_call :
8+
9+ jobs :
10+ lock-threads :
11+ name : Lock Threads
12+ runs-on : ubuntu-latest
13+ permissions :
14+ issues : write
15+ pull-requests : write
16+ steps :
17+ - name : Lock inactive issues and prs
18+ uses : jsumners/lock-threads@e460dfeb36e731f3aeb214be6b0c9a9d9a67eda6 # v3.0.0
19+ with :
20+ issue-inactive-days : ' 90'
21+ pr-inactive-days : ' 90'
22+ exclude-any-issue-labels : ' discussion,good first issue,help wanted'
23+ issue-comment : >
24+ This issue has been automatically locked since there
25+ 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 there
29+ has not been any recent activity after it was closed.
30+ Please open a new issue for related bugs.
You can’t perform that action at this time.
0 commit comments