This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new c2bd0c0cd fix(ci): don't mark PRs stale while they wait on review
(#4172)
c2bd0c0cd is described below
commit c2bd0c0cd3b227299ca441f8a650ab5bd86ebaa0
Author: Justin Mclean <[email protected]>
AuthorDate: Mon Sep 14 16:14:20 2026 +1000
fix(ci): don't mark PRs stale while they wait on review (#4172)
---
.github/workflows/stale-prs.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/stale-prs.yml b/.github/workflows/stale-prs.yml
index 0038d49a1..54e013dc0 100644
--- a/.github/workflows/stale-prs.yml
+++ b/.github/workflows/stale-prs.yml
@@ -51,7 +51,9 @@ jobs:
This pull request was automatically closed because it has been
inactive for 14 days. Feel free to reopen it if you'd like to
continue working on it.
- exempt-pr-labels: "pinned"
+ # S-waiting-on-review means the next move is ours, not the author's,
+ # so the inactivity clock should not run against them.
+ exempt-pr-labels: "pinned,S-waiting-on-review"
exempt-draft-pr: true
days-before-issue-stale: -1
days-before-issue-close: -1