You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/monitor-stale.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,19 +5,19 @@ on:
5
5
operations-per-run:
6
6
description: "Number of operations per run"
7
7
required: false
8
-
default: "30"
8
+
default: "50"
9
9
schedule:
10
10
- cron: "0 0 * * *"# Runs once a day at midnight
11
11
jobs:
12
12
monitor-issues-and-pull-requests:
13
13
runs-on: ubuntu-latest
14
14
permissions:
15
+
actions: write
15
16
issues: write
17
+
pull-requests: write
16
18
steps:
17
19
- uses: actions/stale@v10
18
20
with:
19
-
# Ignore issues with these labels
20
-
exempt-issue-labels: "feature request,question"
21
21
# Days of inactivity before marking an issue as stale
22
22
days-before-stale: 180
23
23
# Days of inactivity before closing an issue
@@ -31,5 +31,5 @@ jobs:
31
31
close-pr-message: "This pull-request was closed due to 7 days of inactivity after being marked as stale. Feel free to reopen it if it remains relevant."
0 commit comments