Skip to content

Commit 3b3e32f

Browse files
gr2mclaude
andauthored
ci(triage): fix failures on PRs against release-v5.0 branch (#12412)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0710a0d commit 3b3e32f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@ai-sdk/google': patch
3+
---
4+
5+
fix(google): handle thoughtSignature on empty-text parts in doGenerate and doStream

.github/workflows/triage.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
uses: actions/checkout@v5
3636
with:
3737
token: ${{ steps.app-token.outputs.token }}
38+
ref: ${{ github.event.pull_request.base.ref }}
3839
fetch-depth: 0
3940

4041
- name: Fetch existing labels
@@ -48,9 +49,11 @@ jobs:
4849
- name: Get changed file paths
4950
id: get-changed-files
5051
run: |
51-
files=$(git diff --name-only origin/${{ github.event.pull_request.base.ref }}...HEAD)
52+
files=$(git diff --name-only origin/${{ github.event.pull_request.base.ref }}...${{ github.event.pull_request.head.sha }})
5253
echo "files=$files"
53-
echo "files=$files" >> $GITHUB_OUTPUT
54+
echo "files<<EOF" >> $GITHUB_OUTPUT
55+
echo "$files" >> $GITHUB_OUTPUT
56+
echo "EOF" >> $GITHUB_OUTPUT
5457
5558
- name: Determine appropriate labels
5659
id: classify-issue

0 commit comments

Comments
 (0)