From 449ea3a15f69e83042b0c4e65f3f8a97cf27d4d1 Mon Sep 17 00:00:00 2001 From: Manas <32352247+Manask322@users.noreply.github.com> Date: Wed, 15 Jul 2026 04:44:00 +0530 Subject: [PATCH 1/5] chore: add stale PR cleanup workflow via centralized pr-manager --- .github/workflows/stale.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 00000000..886ac8bd --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,8 @@ +name: PR Manager +on: + workflow_dispatch: + schedule: + - cron: '0 2 * * *' +jobs: + pr-manager: + uses: razorpay/actions/.github/workflows/pr-manager.yaml@main From 3b603fece62ff46131cda3e51aa680476d410a96 Mon Sep 17 00:00:00 2001 From: Manas <32352247+Manask322@users.noreply.github.com> Date: Wed, 15 Jul 2026 04:44:10 +0530 Subject: [PATCH 2/5] chore: add stale PR cleanup workflow via centralized pr-manager From 90b6211ee67b3ae7d6b53892d41346aa48c1e8ef Mon Sep 17 00:00:00 2001 From: Manas <32352247+Manask322@users.noreply.github.com> Date: Wed, 15 Jul 2026 05:34:11 +0530 Subject: [PATCH 3/5] chore: add stale PR cleanup workflow via centralized pr-manager From 826b82d614f9c372fa8704bab16164298c333cdc Mon Sep 17 00:00:00 2001 From: Manas <32352247+Manask322@users.noreply.github.com> Date: Wed, 15 Jul 2026 15:11:26 +0530 Subject: [PATCH 4/5] =?UTF-8?q?chore:=20fix=20stale=20PR=20manager=20workf?= =?UTF-8?q?low=20=E2=80=94=20correct=20cron,=20@master,=20secrets:=20inher?= =?UTF-8?q?it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/stale.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 886ac8bd..f62106bb 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,8 +1,13 @@ +# PR Manager — stale PR cleanup via centralized reusable workflow in razorpay/actions. +# See: https://github.com/razorpay/actions/blob/master/.github/workflows/pr-manager.yaml name: PR Manager + on: - workflow_dispatch: schedule: - - cron: '0 2 * * *' + - cron: '30 20 * * *' # 2:00 AM IST (8:30 PM UTC) + workflow_dispatch: {} + jobs: - pr-manager: - uses: razorpay/actions/.github/workflows/pr-manager.yaml@main + stale: + uses: razorpay/actions/.github/workflows/pr-manager.yaml@master + secrets: inherit From 631bb9b13ff49e8a4e94a54ab84aa073884ede1d Mon Sep 17 00:00:00 2001 From: Manas <32352247+Manask322@users.noreply.github.com> Date: Wed, 15 Jul 2026 15:26:53 +0530 Subject: [PATCH 5/5] =?UTF-8?q?chore:=20fix=20stale=20PR=20manager=20workf?= =?UTF-8?q?low=20=E2=80=94=20correct=20cron,=20@master,=20secrets:=20inher?= =?UTF-8?q?it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit