From 27bb5f7f80dfd28477cfd2abb785a5671f63f7fa Mon Sep 17 00:00:00 2001 From: Steven Welch Date: Wed, 9 Sep 2026 01:24:23 -0600 Subject: [PATCH] feat: add stale PR dry-run caller --- .github/workflows/stale-pull-requests.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/stale-pull-requests.yml diff --git a/.github/workflows/stale-pull-requests.yml b/.github/workflows/stale-pull-requests.yml new file mode 100644 index 0000000..9e3f5b7 --- /dev/null +++ b/.github/workflows/stale-pull-requests.yml @@ -0,0 +1,19 @@ +--- +# Temporary repository-local dry-run caller. Organization-wide adoption remains +# owned by tfroot-github after branch-protection-compatible adoption. +name: stale-pull-requests + +on: + schedule: + - cron: "17 3 * * *" + workflow_dispatch: + +permissions: + contents: read + pull-requests: read + +jobs: + stale: + uses: makeitworkcloud/shared-workflows/.github/workflows/_stale-pull-requests.yml@e7560bb511468fd800aedbc783d02950d3dff5ca + with: + dry-run: true