Skip to content

Commit

Permalink
Add worklow to close stale issue/pr (#1104)
Browse files Browse the repository at this point in the history
* add worklow to close stale issue/pr
  • Loading branch information
dplore authored May 7, 2024
1 parent a2c7a09 commit b8391e3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '42 2 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 180 days with no activity. If you wish to keep this issue active, please remove the stale label or add a comment, otherwise will be closed in 14 days.'
days-before-stale: 180
days-before-close: 14

0 comments on commit b8391e3

Please sign in to comment.