From 16a605097f5f99b1c1bfc3c2f230d9489aedafd2 Mon Sep 17 00:00:00 2001 From: Wuesteon Date: Thu, 4 Dec 2025 01:26:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(ci):=20correct=20GitHub=20co?= =?UTF-8?q?ntext=20property=20in=20test=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change `context.repo.name` to `context.repo.repo` (line 387) - Fixes 404 error when posting PR comments - GitHub Actions context uses `repo.repo` not `repo.name` 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 03323866e..1ffd6eb46 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -384,6 +384,6 @@ jobs: github.rest.issues.createComment({ issue_number: context.issue.number, owner: context.repo.owner, - repo: context.repo.name, + repo: context.repo.repo, body });