From bd988e80134f03506030d1a0fba519aab78bf214 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 3 Mar 2026 16:05:21 -0500 Subject: [PATCH] ci(digest): approve with DIGEST_PAT after disabling require_last_push_approval MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit require_last_push_approval blocked barrettruth from approving their own push. Disabled that restriction in the ruleset — 1 approval is still required for all PRs, but the approver can now be the pusher. DIGEST_PAT (barrettruth) approves, CI runs via PAT push, auto-merge fires when checks pass. --- .github/workflows/upstream-digest.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/upstream-digest.yml b/.github/workflows/upstream-digest.yml index df155e2..2ebfc22 100644 --- a/.github/workflows/upstream-digest.yml +++ b/.github/workflows/upstream-digest.yml @@ -45,5 +45,6 @@ jobs: --body "Automated weekly digest of new upstream activity. Triage by updating statuses and notes." \ --base main \ --head "${BRANCH}") + GH_TOKEN="${{ secrets.DIGEST_PAT }}" gh pr review "${PR_URL}" --approve gh pr merge "${PR_URL}" --auto --squash fi