blob: e51cf505baf9a7924de70fae4089c8809cf347ca (
plain)
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
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 90
days-before-close: 7
stale-issue-message: >
This issue has been automatically marked as stale because it has not been commented on for at least three months.
It will be automatically closed in 7 days.
If you have any new information or updates please reply in order to keep the issue open.
stale-pr-message: >
This pull request has been automatically marked as stale because has been no activity for at least three months.
It will be automatically closed in 7 days.
If you have any new information or updates please reply in order to keep the pull request open.
stale-issue-label: stale
stale-pr-label: stale
|