chore: import upstream snapshot with attribution
Workflow Lint / actionlint (push) Has been cancelled
Build CI Image / build (push) Has been cancelled
Skill Docs Freshness / check-freshness (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 11:59:46 +08:00
commit dfb0b33892
1170 changed files with 352893 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -e
if git_head="$(git rev-parse HEAD 2>/dev/null)"; then
:
else
git_head=""
fi
for version_file in "$@"; do
mkdir -p "$(dirname "$version_file")"
printf '%s\n' "$git_head" > "$version_file"
done