Skip to content

Commit

Permalink
chore: add stale action
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Aug 3, 2023
1 parent f0d3082 commit 7ad4a4e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
days-before-stale: 30
operations-per-run: 1000
stale-issue-label: 'stale'
stale-issue-message: ''
stale-pr-message: ''

0 comments on commit 7ad4a4e

Please sign in to comment.