Skip to content

Commit

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

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: 'group:closed-as-inactive'
close-pr-label: 'group:closed-as-inactive'
days-before-close: 1
only-labels: 'group:requested-info'
exempt-issue-labels: 'group:info-provided'
exempt-pr-labels: 'group:info-provided'
# operations-per-run: 300

0 comments on commit 0e1e131

Please sign in to comment.