From 0777117401c6a82406a7f588f35f941a2d2ea8e1 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Mon, 7 Sep 2026 14:47:02 +1000 Subject: [PATCH] drift-check.yml: retitle the refresh PR when its count changes The first live runs showed the body updating to 15 lectures while the title still said 14: the update path edited only the body. Co-Authored-By: Claude Fable 5.1 --- .github/workflows/drift-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/drift-check.yml b/.github/workflows/drift-check.yml index 625b921..911ffe3 100644 --- a/.github/workflows/drift-check.yml +++ b/.github/workflows/drift-check.yml @@ -146,7 +146,7 @@ jobs: } > pr-body.md existing=$(gh pr list --head drift/refresh --state open --json number --jq '.[0].number') if [ -n "$existing" ]; then - gh pr edit "$existing" --body-file pr-body.md + gh pr edit "$existing" --title "promote: refresh $n pool lectures whose canonical source moved" --body-file pr-body.md echo "updated PR #$existing" else gh pr create --head drift/refresh --title "promote: refresh $n pool lectures whose canonical source moved" --body-file pr-body.md