Skip to content

Commit

Permalink
feat(repo): add stale bot (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
brokenpip3 authored May 8, 2023
1 parent 7bccdc2 commit 44a7d24
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/auto-stale-issue.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Stale issue automation"
on:
workflow_dispatch:
schedule:
- cron: "0 9 * * *"

permissions:
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
operations-per-run: 200
days-before-issue-stale: 60
days-before-issue-close: 10
exempt-pr-labels: "not-stale"
exempt-issue-labels: "not-stale"

0 comments on commit 44a7d24

Please sign in to comment.