Skip to content

Commit dd79716

Browse files
committed
Increase operations per run and temporarily run on this PR
1 parent 9ea91ca commit dd79716

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/stale.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
name: "Close stale PRs"
1919
on:
2020
schedule:
21-
- cron: "0 11 * * 3" # Run once per week on Wednesday at 11:00 AM UTC
21+
- cron: "0 11 * * *" # Run daily at 11:00 AM UTC
22+
pull_request:
23+
paths:
24+
- '.github/workflows/stale.yml'
25+
workflow_dispatch:
2226

2327
jobs:
2428
close-stale-prs:
@@ -36,6 +40,7 @@ jobs:
3640
# exclude issues
3741
days-before-issue-stale: -1
3842
days-before-issue-close: -1
43+
operations-per-run: 1000
3944
repo-token: ${{ secrets.GITHUB_TOKEN }}
4045
close-stale-issues-usage:
4146
runs-on: ubuntu-latest
@@ -53,6 +58,7 @@ jobs:
5358
stale-issue-label: "Status: stale-warning"
5459
days-before-issue-stale: 365
5560
days-before-issue-close: 14
61+
operations-per-run: 1000
5662
repo-token: ${{ secrets.GITHUB_TOKEN }}
5763
close-stale-issues-enhancement:
5864
runs-on: ubuntu-latest
@@ -71,4 +77,5 @@ jobs:
7177
stale-issue-label: "Status: stale-warning"
7278
days-before-issue-stale: 365
7379
days-before-issue-close: 14
80+
operations-per-run: 1000
7481
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)