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/stale.yml
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,19 @@ jobs:
13
13
runs-on: ubuntu-latest
14
14
permissions:
15
15
issues: write
16
+
pull-requests: write
16
17
17
18
steps:
18
19
- uses: actions/stale@v10
19
20
with:
20
21
repo-token: ${{ secrets.GITHUB_TOKEN }}
21
22
days-before-issue-stale: 7
22
23
days-before-issue-close: 2
24
+
days-before-pr-stale: 14
25
+
days-before-pr-close: 2
23
26
operations-per-run: 100
24
27
stale-issue-label: "status:stale"
28
+
stale-pr-label: "status:stale"
25
29
close-issue-reason: not_planned
26
30
any-of-labels: "status:awaiting user response"
27
31
remove-stale-when-updated: true
@@ -31,5 +35,11 @@ jobs:
31
35
close-issue-message: >
32
36
This issue was closed because it has been inactive for 9 days.
33
37
Please post a new issue if you need further assistance. Thanks!
38
+
stale-pr-message: >
39
+
This pull request has been marked as stale because it has been inactive for 14 days with no activity. It will be closed in 2 days if no further activity occurs.
40
+
close-pr-message: >
41
+
This pull request was closed because it has been inactive for 16 days.
42
+
Please reopen or submit a new PR if you need further assistance. Thanks!
34
43
# Label that can be assigned to issues to exclude them from being marked as stale
0 commit comments