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
Add workflow for managing stale issues & PRs (#1055)
Adds a GitHub workflow for managing stale & rotten issues and PRs.
Issues & PRs are marked stale after 90 days of inactivity. After 60 further days, they are marked as rotten and closed.
issues: write # for actions/stale to close stale issues
15
+
pull-requests: write # for actions/stale to close stale PRs
16
+
runs-on: ubuntu-latest
17
+
18
+
steps:
19
+
- uses: actions/stale@v7
20
+
with:
21
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
22
+
stale-issue-message: "This issue is stale because it has been open for 90 days with no activity. Remove stale label or comment or this will be closed in 60 days."
23
+
stale-pr-message: "This PR is stale because it has been open for 90 days with no activity. Remove stale label or comment or this will be closed in 60 days."
0 commit comments