From 6378359b6652e3ffab26d08d63ecd057cd08008f Mon Sep 17 00:00:00 2001 From: Steven Welch Date: Wed, 9 Sep 2026 00:56:36 -0600 Subject: [PATCH 1/2] feat: add stale PR dry-run pilot --- .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..4c7ee28 --- /dev/null +++ b/.github/workflows/stale-pull-requests.yml @@ -0,0 +1,19 @@ +--- +# Temporary repository-local dry-run pilot. Any organization-wide caller remains +# owned by tfroot-github after branch-protection-compatible adoption. +name: stale-pull-requests + +on: + schedule: + - cron: "17 3 * * *" + workflow_dispatch: + +permissions: + contents: write + pull-requests: write + +jobs: + stale: + uses: makeitworkcloud/shared-workflows/.github/workflows/_stale-pull-requests.yml@e7560bb511468fd800aedbc783d02950d3dff5ca + with: + dry-run: true From 4cd3d7c5e8269d133fd5761cd7c705e0286dc28e Mon Sep 17 00:00:00 2001 From: Steven Welch Date: Wed, 9 Sep 2026 01:01:17 -0600 Subject: [PATCH 2/2] fix: restrict stale pilot token --- .github/workflows/stale-pull-requests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale-pull-requests.yml b/.github/workflows/stale-pull-requests.yml index 4c7ee28..564e0c7 100644 --- a/.github/workflows/stale-pull-requests.yml +++ b/.github/workflows/stale-pull-requests.yml @@ -9,8 +9,8 @@ on: workflow_dispatch: permissions: - contents: write - pull-requests: write + contents: read + pull-requests: read jobs: stale: