-
Notifications
You must be signed in to change notification settings - Fork 228
30 lines (27 loc) · 1.18 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
28
29
30
name: Stale Issues and Pull Requests
permissions:
issues: write
pull-requests: write
on:
schedule:
- cron: "0 8 * * *"
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Check for Stale Issues and Pull Requests
uses: actions/stale@main
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is being automatically marked as stale because it has not received any interaction in the last 90 days. Please leave a comment if this is still a relevant issue, otherwise it will automatically be closed in 30 days.'
stale-pr-message: 'This pull request is being automatically marked as stale because it has not received any interaction in the last 90 days. Please leave a comment if this is still a relevant pull request, otherwise it will automatically be closed in 30 days.'
days-before-stale: 90
days-before-close: 30
stale-issue-label: stale
stale-pr-label: stale
operations-per-run: 1000
exempt-issue-labels: bug,Announcement
exempt-pr-labels: bug
close-issue-label: abandoned
close-pr-label: abandoned