forked from OpenAMP/open-amp
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (25 loc) · 928 Bytes
/
stales.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
name: 'Stale issues and pull requests with no recent activity'
on:
schedule:
- cron: "15 00 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked as a stale issue because it has been open (more than) 45 days with no activity.'
stale-pr-message: 'This pull request has been marked as a stale pull request because it has been open (more than) 45 days with no activity.'
stale-issue-label: Stale
stale-pr-label: Stale
exempt-issue-labels: bug,enhancement
exempt-pr-labels: bug,enhancement
days-before-stale: 45
remove-stale-when-updated: true
remove-issue-stale-when-updated: true
remove-pr-stale-when-updated: true
days-before-close: -1