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 64d095c commit f4cc3b4Copy full SHA for f4cc3b4
1 file changed
.github/workflows/label-issues.yml
@@ -45,7 +45,7 @@ jobs:
45
46
- name: Generate labels for issue
47
run: |
48
- 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
49
echo "Generating labels for: Issue No. $number"
50
LABELS=$(copilot --prompt "Pick labels from $labels for issue $number based on the content of $body" \
51
--model gpt-4.1 \
0 commit comments