-
Notifications
You must be signed in to change notification settings - Fork 55
34 lines (32 loc) · 1.14 KB
/
stale.yml
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
28
29
30
31
32
33
34
name: Stale Issues and PRs
on:
# schedule:
# - cron: '0 8 * * *'
workflow_dispatch: {}
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-20.04
steps:
- uses: actions/stale@v9
with:
operations-per-run: 100
days-before-stale: 90
days-before-close: 7
stale-issue-label: stale
exempt-issue-labels: exempt-from-stale
stale-issue-message: >
This issue has been automatically marked as `stale`
because it has had no activity in the last 90 days. It will be
closed in 7 days if no further activity occurs. Leaving a comment
**starting with** `/fresh` will mark this issue as not stale.
stale-pr-label: stale
exempt-pr-labels: exempt-from-stale
stale-pr-message:
This pull request has been automatically marked as `stale`
because it has had no activity in the last 90 days.
It will be closed in 7 days if no further activity occurs.
closed in 7 days if no further activity occurs. Adding a comment
**starting with** `/fresh` will mark this PR as not stale.