-
Notifications
You must be signed in to change notification settings - Fork 3
28 lines (25 loc) · 912 Bytes
/
stale.yaml
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
# Mark stale issues and pull requests
# cf https://github.com/actions/stale
name: stale
on:
schedule:
- cron: "11 1 * * 6"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
days-before-stale: 365
days-before-close: 31
stale-issue-message: >
This issue is stale (365 days without activity) and will be closed
in 31 days unless new activity is seen. Please feel free to re-open
it is still a concern, possibly with additional data.
stale-pr-message: >
This pull request is is stale (365 days without activity) and will
be closed in 31 days unless new activity is seen. Please feel free
to open a new issue to discuss a fresh approach.