Skip to content

Commit

Permalink
Create stale.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
brycekahle committed Aug 2, 2020
1 parent 4ae9660 commit f881a87
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/stale.yml
@@ -0,0 +1,20 @@
name: Mark stale issues

on:
schedule:
- cron: "0 0 * * *"

jobs:
stale:

runs-on: ubuntu-latest

steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30
days-before-close: 5
stale-issue-message: 'This issue has been inactive for 30 days. It will be in closed in 5 days without any new activity.'
stale-issue-label: 'no-issue-activity'
exempt-issue-labels: 'discussion,work-in-progress'

0 comments on commit f881a87

Please sign in to comment.