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 1465c18 commit b267c3aCopy full SHA for b267c3a
1 file changed
.github/workflows/label-issues.yml
@@ -46,7 +46,7 @@ jobs:
46
47
- name: Generate labels for issue
48
run: |
49
- jq -r -c '.[] | "\(.number) \(.body)"' ./unlabeled_issues.json | while read -r number && read -r body; do
+ jq -r -c '.[] | .number, .body' ./unlabeled_issues.json | while read -r number && read -r body; do
50
echo "Generating labels for: Issue No. $number"
51
LABELS=$(copilot --prompt "Pick labels from $labels for issue $number based on the content of $body" \
52
--model gpt-4.1 \
0 commit comments