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 6be446e commit b03d9b6Copy full SHA for b03d9b6
.github/workflows/gemini-pr-review.yml
@@ -32,8 +32,13 @@ jobs:
32
- name: Debug diff output
33
run: echo "${{ steps.diff.outputs.DIFF }}"
34
35
- - name: Base64 encode DIFF
36
- run: echo "INPUT_DIFF=$(echo "${{ steps.diff.outputs.DIFF }}" | base64)" >> $GITHUB_ENV
+ - name: Base64 encode and set DIFF environment variable
+ run: |
37
+ DELIMITER=$(openssl rand -hex 8)
38
+ ENCODED_DIFF=$(echo "${{ steps.diff.outputs.DIFF }}" | base64)
39
+ echo "INPUT_DIFF<<$DELIMITER" >> $GITHUB_ENV
40
+ echo "$ENCODED_DIFF" >> $GITHUB_ENV
41
+ echo "$DELIMITER" >> $GITHUB_ENV
42
43
- name: Run Gemini review script
44
env:
0 commit comments