Skip to content

Commit b267c3a

Browse files
committed
getting rid of the string interpolation format
1 parent 1465c18 commit b267c3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/label-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: Generate labels for issue
4848
run: |
49-
jq -r -c '.[] | "\(.number) \(.body)"' ./unlabeled_issues.json | while read -r number && read -r body; do
49+
jq -r -c '.[] | .number, .body' ./unlabeled_issues.json | while read -r number && read -r body; do
5050
echo "Generating labels for: Issue No. $number"
5151
LABELS=$(copilot --prompt "Pick labels from $labels for issue $number based on the content of $body" \
5252
--model gpt-4.1 \

0 commit comments

Comments
 (0)