forked from kopia/kopia
-
Notifications
You must be signed in to change notification settings - Fork 2
27 lines (24 loc) · 908 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
26
27
name: 'Manage stale issues and pull requests'
permissions:
issues: write
pull-requests: write
on:
schedule:
# Sundays and Wednesdays at 8:17 p.m. UTC
- cron: '17 20 * * 0,3'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
with:
# process older PRs first
ascending: true
operations-per-run: 100
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'bug,keep-open'
exempt-pr-labels: 'keep-open'
close-issue-message: 'Closed due to inactivity. Re-open and remove "stale" label if it should remain open for an additional period of time'
close-pr-message: 'Closed due to inactivity. Re-open and remove "stale" label if it should remain open for an additional period of time'