From d4188af9579a55d06631cde201948143f1258610 Mon Sep 17 00:00:00 2001 From: amcheste-ai-agent <278991699+amcheste-ai-agent@users.noreply.github.com> Date: Mon, 11 May 2026 21:22:09 -0400 Subject: [PATCH] ci: bump release-drafter to v7.3.0 and drop pull_request trigger Family-wide fix following amcheste/engineering-handbook#18. release-drafter v7 changed how target_commitish is resolved on pull_request events: v6 fell back to the configured default branch, v7 passes GITHUB_REF through unchanged (refs/pull/N/merge on a PR event). The Releases API rejects that value, so the action fails on every PR. v7 also moved autolabeling into a separate action, so the drafter step only needs push events on develop/main. Co-Authored-By: Claude Opus 4.7 (1M context) Co-Authored-By: amcheste <13696614+amcheste@users.noreply.github.com> --- .github/workflows/release-drafter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 909ee1b..a2470df 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -14,6 +14,6 @@ jobs: name: Update Release Draft runs-on: ubuntu-latest steps: - - uses: release-drafter/release-drafter@67e173cadb2fbd3de94f4a861e0c48c913b462ae # v6 + - uses: release-drafter/release-drafter@c2e2804cc59f45f57076a99af580d0fedb697927 # v7.3.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}