-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (27 loc) · 1.08 KB
/
issue-management-stale-action.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
29
name: Issue management - run stale action
on:
schedule:
# hourly at minute 23
- cron: "23 * * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 7
days-before-close: 7
only-labels: "needs author feedback"
stale-issue-label: stale
stale-issue-message: >
This has been automatically marked as stale because it has been marked
as needing author feedback and has not had any activity for 7 days.
It will be closed automatically if there is no response from the author
within 7 additional days from this comment.
stale-pr-label: stale
stale-pr-message: >
This has been automatically marked as stale because it has been marked
as needing author feedback and has not had any activity for 7 days.
It will be closed automatically if there is no response from the author
within 7 additional days from this comment.