-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (26 loc) · 1.7 KB
/
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
26
27
name: 'Close stale issues and PRs'
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
# Issues
days-before-issue-stale: 21
days-before-issue-close: 35
stale-issue-label: 'stale'
stale-issue-message: 'This ticket had no activity recently. @ChristophWurst please adjust the labels if this ticket should stay open and close it otherwise. [Learn more about the stale process](https://github.com/nextcloud/groupware/blob/main/processes/stale_issues_and_prs.md)'
close-issue-message: 'This ticket had no activity for a while, so we close it. If there was information missing on a bug report, we can re-open once the info is provided. [Learn more about the stale process](https://github.com/nextcloud/groupware/blob/main/processes/stale_issues_and_prs.md)'
exempt-issue-labels: '1. to develop,2. developing,3. to review,4. to release'
# PRs
days-before-pr-stale: 7
days-before-pr-close: 180
stale-pr-label: 'stale'
stale-pr-message: 'This pull request needs attention. @ChristophWurst have a look please! [Learn more about the stale process](https://github.com/nextcloud/groupware/blob/main/processes/stale_issues_and_prs.md)'
close-pr-message: 'This pull request had no activity for a while, so we close it. If the changes are still applicable and should be integrated, please get in contact with the maintainers, they can reopen. [Learn more about the stale process](https://github.com/nextcloud/groupware/blob/main/processes/stale_issues_and_prs.md)'
# Other config
enable-statistics: true