Skip to content

Commit 2202df6

Browse files
committed
Only list extensions available in Grafana k6
1 parent 0b9a17c commit 2202df6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/extension-registry-changed

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# The script is run by the extension-registry.changed.yml
77
# workflow when the extension registry changes.
88
#
9-
# The list of extensions is generated based on https://registry.k6.io/registry.json.
9+
# The list of extensions is generated based on https://registry.k6.io/product/oss.json.
1010
#
1111
# In the docs/sources/next/extensions/explore.md file
1212
# the content of the <div class="nav-cards"> HTML element
@@ -15,7 +15,7 @@
1515
set -euf -o pipefail
1616

1717
generate_extension_list_partial() {
18-
curl -sL https://registry.k6.io/registry.json |
18+
curl -sL https://registry.k6.io/product/oss.json |
1919
jq -r '
2020
map(select(.module != "go.k6.io/k6") | { name:.repo.name, url: .repo.url, description: .description } ) |
2121
sort_by(.name) | map(

0 commit comments

Comments
 (0)