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

Commit

Permalink
Merge pull request #33 from otoyo/auto-close-stale-issues
Browse files Browse the repository at this point in the history
Add workflow to close stale issues
  • Loading branch information
otoyo authored Dec 31, 2022
2 parents d1be629 + a40ac0c commit a3018a0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/stale-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Close inactive issues
on:
schedule:
- cron: "30 23 * * *"

jobs:
close-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
stale-issue-label: "stale"
exempt-issue-labels: 'bug,enhancement'
days-before-issue-stale: 30
days-before-issue-close: 14
days-before-pr-stale: -1
days-before-pr-close: -1

0 comments on commit a3018a0

Please sign in to comment.