Skip to content

Commit

Permalink
feat(workflow): add stale workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yanavasileva committed Jun 7, 2024
1 parent 464b4a2 commit bcc027c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/close-stale-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 8 ? * WED,SAT *'
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
close-issue-message: 'Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open.'
close-pr-message: 'Closing due to lack of requested feedback. If you would like us to look at this, please provide the requested information and we will re-open.'
close-issue-label: 'closed-as-inactive'
days-before-close: 7
only-labels: 'group:requested-info'
exempt-issue-labels: 'feedback-provided'
exempt-pr-labels: 'feedback-provided'
operations-per-run: 300

0 comments on commit bcc027c

Please sign in to comment.