Initial labels setup for Pezkuwi SDK

This commit is contained in:
2025-11-27 16:52:00 +03:00
commit 5692f6a0a3
19 changed files with 594 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
export DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
export COMMIT=$(git rev-parse HEAD)
mkdir -p ./docs/src
repo=$1
repo=${repo:-"polkadot-sdk"}
for chain in $repo; do
echo "Generating doc for $chain..."
tera --include --env --env-key env --template templates/template.md.tera ruled_labels/specs_${chain}.yaml >./docs/src/doc_${chain}.md
done