forked from jest-community/vscode-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (24 loc) · 980 Bytes
/
stale.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
32
33
34
35
name: Mark stale issues and auto close if inactive
on:
# schedule:
# - cron: "30 1 * * *"
# debugging
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-label: 'stale'
stale-issue-message: 'This issue is marked stale because it has not seen any activity in 365 days. Please let us know if this is still an important issue for you, otherwise it will be automatically closed in 10 days to help us focus on more active issues. Thanks.'
close-issue-message: 'This issue was closed because it has been stalled for over 365 days without any activity.'
days-before-issue-stale: 365
days-before-issue-close: 10
operations-per-run: 500
# debugging
debug-only: true
enable-statistics: true