forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 815 Bytes
/
stale-tidy.yml
File metadata and controls
28 lines (26 loc) · 815 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
25
26
27
28
---
name: 'Close inactive issues'
on:
schedule:
- cron: '30 1 * * 2,4,6'
permissions: {}
jobs:
stale:
if: github.repository == 'matplotlib/matplotlib'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
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"