From 3a32fb1089d8dfb0932dad390cc6229b45372092 Mon Sep 17 00:00:00 2001 From: Gloire Rubambiza Date: Sun, 15 Mar 2026 20:07:32 -0400 Subject: [PATCH] ci: add org-wide stale issue/PR workflow Assisted-By: Claude Opus 4.6 Signed-off-by: Gloire Rubambiza --- .github/workflows/stale.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/stale.yaml diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml new file mode 100644 index 0000000..b317f8c --- /dev/null +++ b/.github/workflows/stale.yaml @@ -0,0 +1,21 @@ +# Stale Issue and PR Management +# +# Thin caller for the org-wide reusable stale workflow. +# Configuration and defaults are managed centrally in kagenti/.github. +# +# Reference: https://github.com/kagenti/.github/blob/main/.github/workflows/stale.yaml +# +name: Close Stale Issues and PRs + +on: + schedule: + - cron: '0 6 * * *' + workflow_dispatch: + +permissions: + issues: write + pull-requests: write + +jobs: + stale: + uses: kagenti/.github/.github/workflows/stale.yaml@main