We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed6f27d commit fef5267Copy full SHA for fef5267
1 file changed
.github/workflows/stale.yml
@@ -0,0 +1,20 @@
1
+name: Close stale issues and pull requests
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: '0 0 * * *' # Run every day at midnight
7
8
+jobs:
9
+ stale:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/stale@v8
13
+ with:
14
+ days-before-stale: 30
15
+ exempt-issue-labels: |
16
+ in-progress
17
+ help-wanted
18
+ pinned
19
+ security
20
+ enhancement
0 commit comments