From: Daan De Meyer Date: Wed, 18 Mar 2026 08:11:09 +0000 (+0100) Subject: ci: Fix artifact name in claude-review workflow X-Git-Tag: v261-rc1~827 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cada660de5b9bd3614f3c412e1f1a6db7e9116f;p=thirdparty%2Fsystemd.git ci: Fix artifact name in claude-review workflow The name doesn't actually matter, it gets replaced with the name of the file when not archiving. So stop passing a name and pass in the filename as the name when downloading the artifact. --- diff --git a/.github/workflows/claude-review.yml b/.github/workflows/claude-review.yml index 344b3d83dea..cf55bf612a4 100644 --- a/.github/workflows/claude-review.yml +++ b/.github/workflows/claude-review.yml @@ -126,10 +126,11 @@ jobs: const fs = require("fs"); fs.writeFileSync("pr-context.json", JSON.stringify(prContext)); + # archive: false makes upload-artifact use the file's basename + # (pr-context.json) as the artifact name, ignoring the name input. - name: Upload PR context uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f with: - name: pr-context path: pr-context.json archive: false @@ -158,7 +159,7 @@ jobs: - name: Download PR context uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c with: - name: pr-context + name: pr-context.json - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7