Skip to content
This repository was archived by the owner on May 14, 2020. It is now read-only.

Commit b414443

Browse files
authored
Merge pull request #1624 from SpiderLabs/fgsch-patch-1
Mark stale issues
2 parents b77507f + b165542 commit b414443

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/stale.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Mark stale issues
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
jobs:
8+
stale:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/stale@v1
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: 'This issue has been open 120 days with no activity. Remove the stale label or comment, or this will be closed in 14 days'
17+
stale-issue-label: 'Stale issue'
18+
days-before-stale: 120
19+
days-before-close: 14

0 commit comments

Comments
 (0)