Skip to content

Commit

Permalink
Adds stale action (metaplex-foundation#1034)
Browse files Browse the repository at this point in the history
  • Loading branch information
austbot authored Nov 22, 2021
1 parent f28b27e commit 8a69c0d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/actions/management/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '32 1 * * *'
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: 2
days-before-close: 2
exempt-pr-labels: 'wip,reviewing'

0 comments on commit 8a69c0d

Please sign in to comment.