-
-
Notifications
You must be signed in to change notification settings - Fork 3k
25 lines (24 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
name: 'Stale/close issues and PRs'
on:
workflow_dispatch:
schedule:
- cron: '30 0 * * 1,3,5'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v6
with:
days-before-stale: 120
days-before-close: 14
stale-issue-message: >
This issue hasn't had any recent activity, and I'm labeling it `stale`.
Remove the label or comment or this issue will be closed in 14 days.
Thanks for contributing to Mocha!
stale-pr-message: >
This PR hasn't had any recent activity, and I'm labeling it `stale`.
Remove the label or comment or this PR will be closed in 14 days.
Thanks for contributing to Mocha!
exempt-issue-labels: browser,chore,confirmed-bug,developer-experience,documentation,faq,feature,future,good-first-issue,help wanted,nice-to-have,qa,reporter,unconfirmed-bug,usability
exempt-pr-labels: browser,chore,confirmed-bug,developer-experience,documentation,faq,feature,future,needs-review,nice-to-have,qa,reporter,semver-major,semver-minor,semver-patch,usability
operations-per-run: 200