-
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (24 loc) · 917 Bytes
/
Copy pathstale.yml
File metadata and controls
27 lines (24 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Auto-manage stale issues/PRs so the backlog (and the maintainer) stays healthy.
# https://opensource.guide/maintaining-balance-for-open-source-maintainers/
name: Stale
on:
schedule:
- cron: "0 3 * * *"
workflow_dispatch: # allow a manual run to test the config
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10.3.0
with:
days-before-stale: 45
days-before-close: 14
stale-issue-label: stale
stale-pr-label: stale
exempt-issue-labels: "help wanted,good first issue,pinned,security,accessibility"
exempt-pr-labels: "pinned"
stale-issue-message: "Inactive for 45 days — closing in 14 days without further activity. Comment to keep it open."
stale-pr-message: "Inactive for 45 days — closing in 14 days without further activity."