Skip to content

Commit

Permalink
Create stale.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
palma21 committed Jul 21, 2020
1 parent cbf1403 commit ceb21f6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Close stale issues"
on:
schedule:
- cron: "0,30 * * * *"

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been automatically marked as stale because it has not had activity in 90 days. It will be closed in 30 days if no further activity occurs. Thank you!'
close-issue-message: 'This issue has been stale for 30 days without any activity. It will now be closed. If you have any issues or suggestions please open a new issue.'
stale-issue-label: 'stale'
exempt-issue-labels: 'pinned,security,feature,roadmap,enhancement,feature-request,bug'
remove-stale-when-updated: true
days-before-stale: 90
days-before-close: 30

0 comments on commit ceb21f6

Please sign in to comment.