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
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2
+
#
3
+
# You can adjust the behavior by modifying this file.
4
+
# For more information, see:
5
+
# https://github.com/actions/stale
6
+
name: Mark stale issues and pull requests
7
+
on:
8
+
schedule:
9
+
- cron: "*/10 5 * * *"
10
+
jobs:
11
+
stale:
12
+
runs-on: ubuntu-latest
13
+
permissions:
14
+
issues: write
15
+
pull-requests: write
16
+
steps:
17
+
- uses: actions/stale@v5
18
+
with:
19
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
20
+
days-before-stale: 365
21
+
stale-issue-message: 'This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
22
+
stale-pr-message: 'This PR is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
23
+
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
24
+
close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.'
25
+
exempt-issue-labels: 'Help Wanted, Good first issue, Never gets stale'
0 commit comments