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 19, 2020
1 parent 803fe4e commit cbdcac3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Mark stale issues and pull requests

on:
schedule:
- cron: "30 1 * * *"

jobs:
stale:

runs-on: ubuntu-latest

steps:
- uses: actions/stale@v1
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 if no further activity occurs. Thank you!'
stale-pr-message: 'This pull request has been automatically marked as stale because it has not had activity in 90 days. It will be closed if no further activity occurs. Thank you!'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
days-before-stale: 90
days-before-close: 5
exempt-pr-labels: 'pinned,feature,feature-request,roadmap,enhancement,triage,bug,awaiting-approval,work-in-progress'

0 comments on commit cbdcac3

Please sign in to comment.