Skip to content

Commit cc1f437

Browse files
committed
Stale GH Action
[skip ci]
1 parent f30c9ac commit cc1f437

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/stale.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Close stale issues"
2+
on:
3+
schedule:
4+
- cron: "0 0 * * *"
5+
push:
6+
paths:
7+
- .github/workflows/stale.yml
8+
9+
jobs:
10+
stale:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/stale@v2
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: >-
17+
This issue has been automatically marked as stale because it has not
18+
had recent activity. It will be closed if no further activity
19+
occurs.
20+
days-before-stale: 30
21+
days-before-close: 7
22+
exempt-issue-labels: "bug,docs,not stale"
23+
stale-issue-label: "stale"

0 commit comments

Comments
 (0)