You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 4.5 Fetch Component Summary (Group, Count, and Link Labels)
113
+
# We grab labels and issue numbers, filter structural labels, group them,
114
+
# count them, join the issue numbers, and output a Markdown table.
115
+
gh issue list \
116
+
--repo ${{ github.repository }} \
117
+
--search "milestone:\"$VERSION_NUM\"" \
118
+
--state all \
119
+
--limit 1000 \
120
+
--json number,labels \
121
+
--jq '
122
+
[ .[] as $issue | $issue.labels[].name |
123
+
select(. != "bug" and . != "enhancement" and . != "feature" and . != "feedback" and . != "break-change" and . != "api-change" and . != "dependencies" and . != "deprecated") |
0 commit comments