forked from metcalfc/changelog-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (21 loc) · 885 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
name: Mark stale issues and pull requests
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Close Stale Issues
uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has not had any activity in 30 days. Marking it stale. It will be closed in 14 days.'
stale-pr-message: 'This PR has not had any activity in 30 days. Marking it stale. It will be closed in 14 days.'
close-issue-message: 'This issue has not had any activity in 44 days. Closing it.'
close-pr-message: 'This PR has not had any activity in 44 days. Closing it.'
days-before-stale: 30
days-before-close: 14
stale-issue-label: 'stale-issue'
stale-pr-label: 'stale-pr'
remove-stale-when-updated: true