generated from SocketSomeone/nestjs-open-source-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (31 loc) · 969 Bytes
/
lock.yml
File metadata and controls
37 lines (31 loc) · 969 Bytes
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
32
33
34
35
36
37
name: 'Lock Threads'
on:
schedule:
- cron: '0 16 * * *'
workflow_dispatch:
permissions:
actions: write
contents: write # only for delete-branch option
issues: write
pull-requests: write
concurrency:
group: lock
jobs:
action:
runs-on: ubuntu-latest
steps:
- name: Close Stale Issues
uses: actions/stale@v10.2.0
with:
days-before-stale: 90
days-before-close: 0
stale-issue-label: 'wontfix'
exempt-issue-labels: 'help wanted'
stale-issue-message: >
This issue has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new issue for related bugs.
stale-pr-message: >
This pull request has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new pull request for related changes.