Skip to content

Commit

Permalink
chore: refactor stale issue handling
Browse files Browse the repository at this point in the history
  • Loading branch information
fr-ser committed Mar 8, 2024
1 parent db2b91b commit 28e90e5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .github/stale.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Close stale issues'
on:
schedule:
- cron: '55 * * * *'

jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/stale@v9
with:
days-before-pr-close: -1
days-before-issue-stale: 30
days-before-issue-close: 14
stale-issue-label: pending-closure
exempt-issue-labels: TODO
stale-issue-message: >
This issue has been automatically marked as stale because it has not had recent activity.
It will be closed if no further activity occurs.
Thank you for your contributions.
debug-only: true

0 comments on commit 28e90e5

Please sign in to comment.