Skip to content

Commit

Permalink
chore: add stale issues workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed Feb 14, 2024
1 parent 0f6850c commit cd170f8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 'Close stale issues'
on:
workflow_dispatch:
schedule:
- cron: '08 11 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 180
days-before-close: 14
only-labels: 'S: triage'
stale-issue-label: 'S: stale'
stale-pr-label: 'S: stale'
exempt-all-milestones: true
exempt-draft-pr: true
debug-only: true
operations-per-run: 1000

0 comments on commit cd170f8

Please sign in to comment.