From 6612fe469c611a24bb628328d2d7bac887bdee38 Mon Sep 17 00:00:00 2001 From: Tanay Sood Date: Thu, 23 Oct 2025 22:55:22 -0700 Subject: [PATCH] Fix working directory for review brief generation --- .github/workflows/pr-review-brief.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-review-brief.yml b/.github/workflows/pr-review-brief.yml index 9641d44..7c22455 100644 --- a/.github/workflows/pr-review-brief.yml +++ b/.github/workflows/pr-review-brief.yml @@ -50,13 +50,15 @@ jobs: - name: Generate review brief env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + working-directory: ${{ github.workspace }} run: | python scripts/ci/review_brief.py \ --base ${{ github.event.pull_request.base.sha }} \ --head ${{ github.event.pull_request.head.sha }} \ - --pr ${{ github.event.pull_request.number }} \ + --pr ${{ github.event.pull_request.number }} \ --repo ${{ github.repository }} > brief.md + - name: Publish review brief comment uses: peter-evans/create-or-update-comment@v4 with: