We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf8b74c commit 00cf09eCopy full SHA for 00cf09e
.github/workflows/stale.yml
@@ -0,0 +1,21 @@
1
+name: Mark stale issues and pull requests
2
+
3
+on:
4
+ schedule:
5
+ - cron: "30 1 * * *"
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 is labelled as stale because it has been open for more than 7 days with no activity.'
17
+ days-before-stale: 7
18
+ days-before-close: 7
19
+ stale-issue-label: 'stale'
20
+ exempt-issue-labels: 'Announcement,Pinned'
21
+ remove-stale-when-updated: true
0 commit comments