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
+9-14Lines changed: 9 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -8,26 +8,21 @@ name: Mark stale issues and pull requests
8
8
on:
9
9
workflow_dispatch:
10
10
schedule:
11
-
- cron: '35 8 * * *'
11
+
- cron: "35 8 * * *"
12
12
13
13
jobs:
14
14
stale:
15
-
16
15
runs-on: ubuntu-latest
17
16
permissions:
18
17
issues: write
19
18
pull-requests: write
20
19
21
20
steps:
22
-
- name: Close Stale Issues
23
-
uses: actions/stale@v9.0.0
24
-
with:
25
-
repo-token: ${{ secrets.STALE_ISSUE_TOKEN }}
26
-
stale-issue-message: 'This issue has automatically been marked as stale as there has been no activity for 60 days. Remove stale label or comment or this will be closed in 7 days.'
27
-
stale-pr-message: 'This pull request has automatically been marked as stale as there has been no activity for 30 days. Remove stale label or comment or this will be closed in 7 days.'
28
-
stale-issue-label: 'stale'
29
-
stale-pr-label: 'stale'
30
-
close-issue-message: 'This issue has been closed automatically due to a lack of activity.'
31
-
close-pr-message: 'This pull request has been closed automatically due to a lack of activity.'
0 commit comments