forked from syl20bnr/spacemacs
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 968 Bytes
/
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
name: Mark stale issues and pull requests
on:
schedule:
- cron: '*/15 * * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
operations-per-run: 100
stale-issue-message: >
This issue has been automatically marked as stale because it has not
had recent activity. It will be closed if no further activity occurs.
Please let us know if this issue is still valid!
stale-pr-message: >
This PR has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs.
Please let us know if this PR is still need merging!
stale-issue-label: 'stale'
exempt-issue-label: 'High Priority'
stale-pr-label: 'stale'
exempt-pr-label: 'High Priority'
days-before-stale: 365
days-before-close: 90