Skip to content

Commit

Permalink
GH bot for stale issues (#2322)
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje authored Nov 18, 2021
1 parent dbcf2e1 commit ad8dd24
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/stale-issue-reminder-and-closing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Handle stale issues
on:
schedule:
- cron: "0 0 * * *"

permissions:
issues: write

jobs:
close-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
days-before-issue-stale: 14
days-before-issue-close: 7
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity. It will be automatically closed in 7 days from now if no activity is detected."
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
exempt-issue-labels: Bug,Blocked,Blocker,Design,enhancement
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ad8dd24

Please sign in to comment.