Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Cron job for detecting stale issues (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
thesattiraju committed Aug 26, 2019
1 parent 7f0f409 commit 1b6766e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/staleissues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Close stale issues"

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

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
days-before-stale: 30
days-before-close: 5

0 comments on commit 1b6766e

Please sign in to comment.