Skip to content

Commit

Permalink
[ci] automatically close issues marked awaiting answer (#13668)
Browse files Browse the repository at this point in the history
[ci] automatically close issues marked awaiting answer if no reply in 14 days
  • Loading branch information
titusfortner committed Mar 8, 2024
1 parent 3c05175 commit 8f7c7a4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/stale.yml
Expand Up @@ -16,11 +16,18 @@ jobs:
pull-requests: write # for actions/stale to close stale PRs
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 280 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
close-issue-message: 'This issue was closed because it has been stalled for 14 days with no activity.'
stale-issue-label: 'I-stale'
days-before-stale: 280
days-before-close: 14
operations-per-run: 200
- uses: actions/stale@v9
with:
close-issue-message: 'This issue was closed because we did not receive any additional information after 14 days.'
stale-issue-label: 'R-awaiting answer'
days-before-stale: -1
days-before-close: 14
labels-to-add-when-unstale: 'needs-triaging'

0 comments on commit 8f7c7a4

Please sign in to comment.