From acc35ca8a62c9705653043d0425d599262f9908c Mon Sep 17 00:00:00 2001 From: Vigers Ray <60344369+VigersRay@users.noreply.github.com> Date: Sat, 15 Nov 2025 02:36:58 +0100 Subject: [PATCH] Save PR title and body in workflow Added steps to save pull request title and body to files. --- .github/workflows/ai-gdd-review.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ai-gdd-review.yml b/.github/workflows/ai-gdd-review.yml index 8e79584a1a..b618cf3a8f 100644 --- a/.github/workflows/ai-gdd-review.yml +++ b/.github/workflows/ai-gdd-review.yml @@ -19,6 +19,11 @@ jobs: git fetch origin ${{ github.base_ref }} --depth=1 || true git diff origin/${{ github.base_ref }}...HEAD > diff.txt + - name: Save PR metadata + run: | + echo "${{ github.event.pull_request.title }}" > pr_title.txt + echo "${{ github.event.pull_request.body }}" > pr_body.txt + - name: Setup Python uses: actions/setup-python@v4 with: