From 856011f132a020d89c31cee0fdff6a73ee1973d2 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 5 Apr 2026 13:52:38 +0200 Subject: [PATCH] ci: auto-close 'waiting for reply' issues after 30 days of inactivity --- .github/workflows/stale-waiting-for-reply.yml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/stale-waiting-for-reply.yml diff --git a/.github/workflows/stale-waiting-for-reply.yml b/.github/workflows/stale-waiting-for-reply.yml new file mode 100644 index 000000000..6859790db --- /dev/null +++ b/.github/workflows/stale-waiting-for-reply.yml @@ -0,0 +1,29 @@ +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@v9 + with: + only-labels: 'waiting for reply' + days-before-issue-stale: 30 + days-before-issue-close: 0 + stale-issue-label: 'waiting for reply' + remove-stale-when-updated: false + 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! + days-before-pr-stale: -1 + days-before-pr-close: -1 + operations-per-run: 100