From 18984204bdcf866a67e5ac1a6c52e391fcf54603 Mon Sep 17 00:00:00 2001 From: Mike Goldsmith Date: Fri, 6 Mar 2026 13:35:38 +0000 Subject: [PATCH 1/4] increase stale action operations-per-run to 500 Assisted-by: Claude Sonnet 4.6 --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index a081b7daedb..faa21e42412 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -33,3 +33,4 @@ jobs: This PR has been closed due to inactivity. Please reopen if you would like to continue working on it. exempt-pr-labels: "hold,WIP,blocked by spec,do not merge" + operations-per-run: 500 From 86d3309357de6ed1ce6f08273161090015b6d62d Mon Sep 17 00:00:00 2001 From: Mike Goldsmith Date: Fri, 6 Mar 2026 13:42:23 +0000 Subject: [PATCH 2/4] add changelog entry for stale ops-per-run increase Assisted-by: Claude Sonnet 4.6 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70f088cc321..b9275fd8d58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +- Increase stale action `operations-per-run` to 500 to allow processing all stale PRs in a single run + ([#4959](https://github.com/open-telemetry/opentelemetry-python/pull/4959)) - `opentelemetry-sdk`: fix type annotations on `MetricReader` and related types ([#4938](https://github.com/open-telemetry/opentelemetry-python/pull/4938/)) From 28092f14477eb9abf561824f1372fb0056ee922e Mon Sep 17 00:00:00 2001 From: Mike Goldsmith Date: Mon, 9 Mar 2026 10:06:31 +0000 Subject: [PATCH 3/4] remove changelog --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9275fd8d58..70f088cc321 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,8 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -- Increase stale action `operations-per-run` to 500 to allow processing all stale PRs in a single run - ([#4959](https://github.com/open-telemetry/opentelemetry-python/pull/4959)) - `opentelemetry-sdk`: fix type annotations on `MetricReader` and related types ([#4938](https://github.com/open-telemetry/opentelemetry-python/pull/4938/)) From 855989e6bffc8a4df6a7adede2b1c1d5cb55610c Mon Sep 17 00:00:00 2001 From: Mike Goldsmith Date: Mon, 9 Mar 2026 10:38:38 +0000 Subject: [PATCH 4/4] add TODO to revert once backlog is clear --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index faa21e42412..e0375ac15de 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -33,4 +33,5 @@ jobs: This PR has been closed due to inactivity. Please reopen if you would like to continue working on it. exempt-pr-labels: "hold,WIP,blocked by spec,do not merge" + # TODO: Revert back to default of 30 after we have cleared the backlog of stale PRs. operations-per-run: 500