-
Notifications
You must be signed in to change notification settings - Fork 24
34 lines (31 loc) · 1.19 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
32
33
34
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 12 * * *'
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
days-before-issue-stale: 14
# days-before-issue-close: 7
days-before-issue-close: -1
days-before-pr-stale: 14
days-before-pr-close: -1
stale-issue-label: 'no-issue-activity'
exempt-issue-labels: 'no-issue-activity,wontfix'
stale-pr-label: 'no-pr-activity'
exempt-pr-labels: 'no-pr-activity,wontfix'
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity."
# close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
stale-pr-message: 'This pull request is stale because there is no activity for 14 days'
repo-token: ${{ secrets.GITHUB_TOKEN }}