Skip to content

Commit

Permalink
feat: add stale detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Timeraa committed Dec 25, 2024
1 parent a1e1a37 commit 0f3b384
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Stale
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Stale
uses: actions/stale@v9
with:
days-before-stale: 60
stale-issue-message: |
This issue has been marked as stale because it has been inactive for over 60 days.
If this is still relevant, please leave a comment to let us know.
Otherwise, this issue may be closed automatically in 7 days.
close-issue-message: |
This issue has been automatically closed due to inactivity for over 60 days.
If you believe this issue is still relevant, feel free to reopen it or create a new one with updated information.
stale-issue-label: inactive
only-labels: bug
debug-only: true

0 comments on commit 0f3b384

Please sign in to comment.