Skip to content

Commit 25b9fb3

Browse files
authored
fix(issue template): sort packages by title (#13583)
Sort the list of integrations in the issue template by title (ignoring case). Previously they were ordered by directory name which was confusing.
1 parent 7189d7b commit 25b9fb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/updatecli/updatecli.d/sync-packages-to-bug-issue-template.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ targets:
3535
title=$(yq .title packages/$i/manifest.yml)
3636
pkg=$i
3737
echo "- $title [$pkg]"
38-
done | yq -o json .)
38+
done | sort -s -f | yq -o json .)
3939
4040
yq eval ".body[1].attributes.options = $pkgs" -i '.github/ISSUE_TEMPLATE/integration_bug.yml'
4141
yq eval ".body[1].attributes.options = $pkgs" -i '.github/ISSUE_TEMPLATE/integration_feature_request.yml'

0 commit comments

Comments
 (0)