31 lines
935 B
YAML
31 lines
935 B
YAML
name: Close stale "waiting for reply" issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
|
|
with:
|
|
only-labels: 'waiting for reply'
|
|
days-before-issue-stale: 30
|
|
days-before-issue-close: 30
|
|
stale-issue-label: 'waiting for reply'
|
|
remove-stale-when-updated: true
|
|
close-issue-message: >
|
|
Closing this for now since we haven't heard back on the follow-up
|
|
questions. If you're still seeing this on a recent version, just
|
|
drop a comment with the requested info and we'll reopen. Thanks
|
|
for the report!
|
|
stale-pr-label: 'waiting for reply'
|
|
days-before-pr-stale: 30
|
|
days-before-pr-close: -1
|
|
operations-per-run: 100
|