Skip to content

Commit

Permalink
Merge pull request #1774 from grafana/1773-only-list-extensions-avail…
Browse files Browse the repository at this point in the history
…able-in-grafana-k6

Only list extensions available in Grafana k6
  • Loading branch information
szkiba authored Oct 11, 2024
2 parents 0b9a17c + 2202df6 commit e60ab5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/extension-registry-changed
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# The script is run by the extension-registry.changed.yml
# workflow when the extension registry changes.
#
# The list of extensions is generated based on https://registry.k6.io/registry.json.
# The list of extensions is generated based on https://registry.k6.io/product/oss.json.
#
# In the docs/sources/next/extensions/explore.md file
# the content of the <div class="nav-cards"> HTML element
Expand All @@ -15,7 +15,7 @@
set -euf -o pipefail

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

0 comments on commit e60ab5f

Please sign in to comment.