We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fed511 commit 519afd4Copy full SHA for 519afd4
.github/workflows/stale.yml
@@ -1,12 +1,18 @@
1
name: 'Close stale issues and PRs'
2
3
on:
4
+ pull_request:
5
+ paths:
6
+ - ".github/workflows/stale.yml"
7
+
8
schedule:
9
# check issue and pull request once at 01:30 a.m. every day
- - cron: '30 1 * * *'
10
+ - cron: '15 15 * * *'
11
12
permissions:
- contents: write
13
+ contents: write # only for delete-branch option
14
+ issues: write
15
+ pull-requests: write
16
17
jobs:
18
stale:
@@ -26,3 +32,4 @@ jobs:
26
32
days-before-pr-close: 10
27
33
# automatically remove the stale label when the issues or the pull reqquests are updated or commented
28
34
remove-stale-when-updated: true
35
+ operations-per-run: 50
0 commit comments