-
Notifications
You must be signed in to change notification settings - Fork 75
31 lines (28 loc) · 1.17 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
31
name: Mark stale pull requests
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
start-date: '2024-04-19T00:00:00Z' # ISO 8601 or RFC 2822
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 14 days'
close-issue-message: 'This issue was closed because it has been stalled for 14 days with no activity.'
close-pr-message: 'This PR was closed because it has been stalled for 14 days with no activity.'
stale-pr-label: 'stale'
exempt-issue-labels: 'good-first-issue'
exempt-all-milestones: true
days-before-stale: 30
days-before-close: 14
unassign:
runs-on: ubuntu-latest
steps:
- name: Auto unassign stale assignments
uses: JasonEtco/slash-assign-action@v0.0.3
with:
required_label: 'good-first-issue'