-
Notifications
You must be signed in to change notification settings - Fork 39
29 lines (24 loc) · 876 Bytes
/
stale.yml
File metadata and controls
29 lines (24 loc) · 876 Bytes
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
29
name: Mark stale issues and pull requests
permissions:
contents: read
issues: write
pull-requests: write
on:
schedule:
- cron: "0 0 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: ':wave: Hi! This issue has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
stale-pr-message: ':wave: Hi! This pull request has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
stale-issue-label: 'stale'
exempt-issue-label: 'keep-open'
stale-pr-label: 'stale'
days-before-stale: 30
days-before-close: 30