We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecf7c64 commit d57c65bCopy full SHA for d57c65b
.github/workflows/gemini-pr-review.yml
@@ -25,9 +25,8 @@ jobs:
25
- name: Get PR diff
26
id: diff
27
run: |
28
- echo "DIFF<<EOF" >> $GITHUB_OUTPUT
29
- git diff origin/${{ github.event.pull_request.base.ref }} ${{ github.sha }} >> $GITHUB_OUTPUT
30
- echo "EOF" >> $GITHUB_OUTPUT
+ gh pr diff ${{ github.event.pull_request.number }} > diff.txt
+ echo "DIFF=$(cat diff.txt)" >> $GITHUB_OUTPUT
31
32
- name: Debug diff output
33
run: echo "${{ steps.diff.outputs.DIFF }}"
0 commit comments