Skip to content

Commit

Permalink
Add stale bot (#221)
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Kämmerling <[email protected]>
  • Loading branch information
LKaemmerling authored Jan 10, 2020
1 parent 08f0f4f commit 85e971e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/bot_stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Close stale issues"
on:
schedule:
- cron: "30 12 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked as stale because it has not had recent activity. The bot will close the issue if no further action occurs.'
exempt-issue-label: 'pinned'
stale-issue-label: 'stale'
stale-pr-message: 'This PR has been marked as stale because it has not had recent activity. The bot will close the PR if no further action occurs.'
exempt-pr-label: 'pinned'
stale-pr-label: 'stale'
days-before-stale: 30
days-before-close: 5

0 comments on commit 85e971e

Please sign in to comment.