mirror of https://github.com/ory/kratos
14 lines
471 B
Bash
Executable File
14 lines
471 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
schema_version="${1:-$(git rev-parse --short HEAD)}"
|
|
|
|
sed "s!ory://tracing-config!https://raw.githubusercontent.com/ory/kratos/$schema_version/oryx/otelx/config.schema.json!g;" embedx/config.schema.json > .schemastore/config.schema.json
|
|
|
|
git config user.email "60093411+ory-bot@users.noreply.github.com"
|
|
git config user.name "ory-bot"
|
|
|
|
git add .schemastore/config.schema.json
|
|
git commit -m "autogen: render config schema" || true
|