forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (23 loc) · 761 Bytes
/
stale-tidy.yml
File metadata and controls
24 lines (23 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
name: 'Close inactive issues'
on:
schedule:
- cron: '30 1 * * 2,4,6'
jobs:
stale:
if: github.repository == 'matplotlib/matplotlib'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
operations-per-run: 300
days-before-stale: -1
stale-pr-label: "status: inactive"
days-before-pr-close: -1
stale-issue-label: "status: inactive"
close-issue-label: "status: closed as inactive"
days-before-issue-close: 30
ascending: true
exempt-issue-labels: "keep,status: confirmed bug"
exempt-pr-labels: "keep,status: orphaned PR"