forked from metaplex-foundation/metaplex
-
Notifications
You must be signed in to change notification settings - Fork 0
20 lines (20 loc) · 720 Bytes
/
Copy pathaction.yml
File metadata and controls
20 lines (20 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: 'Close stale issues and PRs'
on:
workflow_dispatch:
schedule:
- cron: '14 3 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: 'This Issue has received no activity for 30 days. We will close it in 2 days, please reopen if you are still experiencing this issue.'
stale-pr-message: 'This PR has received no activity for 30 days. We will close it in 2 days, please reopen if you would still like to get this change in.'
days-before-stale: 30
days-before-close: 3
exempt-pr-labels: 'wip,reviewing'
operations-per-run: 500
permissions:
issues: write
pull-requests: write