Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: latest change log of docs #83

Merged
merged 4 commits into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
run: |
bash .github/workflows/generate-contributors.sh
- name: generate changelog
run: |
bash .github/workflows/generate-changelog.sh
- name: Build website
run: |
make build
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/generate-changelog.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/usr/bin/env bash
# 不编码显示中文文件路径
git config --global core.quotepath false
# 定义文件路径变量
CHANGELOG_FILE="docs/docs/changelog.md"
echo "---" > $CHANGELOG_FILE
echo "slug: '/docs/changelog'" >> $CHANGELOG_FILE
echo "title: '文档更新记录'" >> $CHANGELOG_FILE
echo "---" >> $CHANGELOG_FILE
echo "" >> $CHANGELOG_FILE
# 获取最近提交记录,只包含 .md 文件的修改
git log -n 20 --pretty=format:"- [%ad](https://github.com/gogf/gf-site/commit/%H) - [%an] - %s" --abbrev-commit --no-merges --date=format:'%m-%d %H:%M' -- '*.md' | while read -r line; do
echo "$line" >> $CHANGELOG_FILE
# 从输出中提取提交哈希
commit_hash=$(echo "$line" | grep -oP '(?<=commit/)[a-f0-9]+')
# 显示修改的文件
if [ -n "$commit_hash" ]; then
git diff-tree --no-commit-id --name-only -r "$commit_hash" -- '*.md' | while read -r changefile; do
filename=$(basename "$changefile")
filename="${filename%.*}"
# 提取文件头中的 slug 路径
if [ -f "$changefile" ]; then
slug_path=$(grep 'slug:' "$changefile" | awk -F"'" '{print $2}')
title=$(grep "title: '" "$changefile" | awk -F"'" '{print $2}')
if [ -n "$slug_path" ]; then
if [ -z "$title" ]; then
# 标题不存在的时候用文件名作为标题
title="$filename"
fi
echo " - [$title]($slug_path)" >> $CHANGELOG_FILE
fi
fi
done
fi
echo "" >> $CHANGELOG_FILE
done
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ go.work.sum
node_modules
.docusaurus
output

docs/docs/changelog.md

# Dependencies
/node_modules
Expand Down