We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aae95b6 commit 3851222Copy full SHA for 3851222
.github/workflows/stale.yml
@@ -2,6 +2,7 @@ name: "Close stale issues and PRs"
2
on:
3
schedule:
4
- cron: "30 1 * * *"
5
+ workflow_dispatch:
6
7
jobs:
8
stale:
@@ -10,6 +11,7 @@ jobs:
10
11
contents: write
12
issues: write
13
pull-requests: write
14
+ actions: write
15
steps:
16
- uses: actions/stale@v10
17
with:
@@ -20,4 +22,6 @@ jobs:
20
22
days-before-stale: 90
21
23
days-before-close: 15
24
exempt-issue-labels: "bug"
- except-pr-labels: "bug"
25
+ exempt-pr-labels: "bug"
26
+ remove-stale-when-updated: true
27
+ operations-per-run: 100
0 commit comments