forked from domoticz/domoticz
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (24 loc) · 958 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
25
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
any-of-labels: 'PendingFeedback,Stale'
stale-issue-message: 'This issue is stale because it has been open 14 days with no activity. Please comment or this issue will be closed in 7 days.'
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
days-before-stale: 14
days-before-pr-stale: -1
days-before-close: 7
days-before-pr-close: -1
remove-stale-when-updated: true
labels-to-remove-when-stale: 'PendingFeedback'