feat(data): 添加 GitHub 提交统计 JSON 数据文件
- 创建包含提交数量范围数据的 JSON 文件 - 添加周、月、年时间段的提交统计字段 - 初始化所有提交计数为零值 - 设置生成时间戳以追踪数据创建时间 - 定义结构化数据格式便于后续处理 - 包含年度提交总数初始化为 73 次
This commit is contained in:
11
data/github_commits.json
Normal file
11
data/github_commits.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"generated_at": "2025-11-20T12:21:13Z",
|
||||||
|
"range": {
|
||||||
|
"week": { "start": "2025-11-14", "end": "2025-11-20" },
|
||||||
|
"month": { "start": "2025-10-22", "end": "2025-11-20" },
|
||||||
|
"year": { "start": "2025-01-01", "end": "2025-11-20" }
|
||||||
|
},
|
||||||
|
"week": 0,
|
||||||
|
"month": 0,
|
||||||
|
"year": 73
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user