From 0f40ef5a10aa3b9a04f9105668b4bf7c69c3ae83 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 30 May 2025 11:04:41 -0700 Subject: [PATCH 1/2] fix: missed a step in #1171 for codex.yml (#1172) Missed in my copy/paste. --- .github/workflows/codex.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/codex.yml b/.github/workflows/codex.yml index 1ca50f499f..a105581bbc 100644 --- a/.github/workflows/codex.yml +++ b/.github/workflows/codex.yml @@ -47,6 +47,12 @@ jobs: with: node-version: 22 + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 10.8.1 + run_install: false + - name: Get pnpm store directory id: pnpm-cache shell: bash From 354ceaf3651b2a926e9f7f5c4db3c8b86a96325f Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 30 May 2025 11:15:32 -0700 Subject: [PATCH 2/2] fix: add extra debugging to GitHub Action --- .github/actions/codex/src/post-comment.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/codex/src/post-comment.ts b/.github/actions/codex/src/post-comment.ts index 9a3d7528eb..914fd0d322 100644 --- a/.github/actions/codex/src/post-comment.ts +++ b/.github/actions/codex/src/post-comment.ts @@ -17,6 +17,7 @@ export async function postComment( const bodyWithFooter = footer ? `${commentBody}${footer}` : commentBody; const octokit = ctx.getOctokit(); + console.info("Got Octokit instance for posting comment"); const { owner, repo } = github.context.repo; const issueNumber = github.context.issue.number; @@ -28,6 +29,7 @@ export async function postComment( } try { + console.info("Calling octokit.rest.issues.createComment()"); await octokit.rest.issues.createComment({ owner, repo,