Skip to content

Commit

Permalink
Stale GH Action
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
aantron committed May 1, 2020
1 parent f30c9ac commit 44dd495
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
- on:
- push:
- paths:
- .github/workflows/stale.yml

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: >-
This issue has been automatically marked as stale because it has not
had recent activity. It will be closed if no further activity occurs.
days-before-stale: 30
days-before-close: 7
exempt-issue-labels: "bug,docs,not stale"
stale-issue-label: "stale"

0 comments on commit 44dd495

Please sign in to comment.