-
-
Notifications
You must be signed in to change notification settings - Fork 93
25 lines (23 loc) · 976 Bytes
/
archive.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
name: Archive
on:
schedule:
- cron: "0 0 * * *"
jobs:
archive:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 60
days-before-close: 18
stale-issue-message: >
This issue will be closed and archived in 18 days, as there has been no activity in the last 60 days.
If this issue is still relevant or you would like to see it actioned, please respond and we will re-open this issue.
stale-pr-message: >
This pull request will be closed and archived in 18 days, as there has been no activity in the last 60 days.
If this is still being worked on, please respond and we will re-open this pull request.
stale-issue-label: 'archived'
stale-pr-label: 'archived'
exempt-issue-labels: 'in progress,feature request,bug,enhancement,no-archive'
exempt-pr-labels: 'in progress'