从零搭建基于 AI GitHub 分析平台 (10) 获取 github commit

获取 github Token

访问 GitHub,到下面路径获取:


修改.env

1
GITHUB_TOKEN='ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'

编写获取模块

添加 src/lib/github.ts:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { Octokit } from "octokit";

export const octokit = new Octokit({
auth: process.env.GITHUB_TOKEN
});

const githubURL = 'https://github.com/belgattitude/shared-dx';

type Response = {
commitHash: string;
commitMessage: string;
commitAuthorName: string;
commitAuthorAvatar: string;
commitDate: string;
};

export const getCommitHashes = async ( githubURL: string): Promise<Response[]> => {
const { data } = await octokit.rest.repos.listCommits({
owner:"belgattitude",
repo:"shared-dx"
});

const sortedCommits = data.sort((a:any, b:any) => new Date(b.commit.author.date).getTime() -
new Date(a.commit.author.date).getTime());

return sortedCommits.slice(0,15).map((commit: any)=>({
commitHash: commit.sha as string,
commitMessage: commit.commit.message ?? "",
commitAuthorName: commit.commit?.author?.name ?? "",
commitAuthorAvatar: commit?.author?.avatar_url ?? "",
commitDate: commit.commit?.author?.date ?? "",
}));
}

console.log(await getCommitHashes(githubURL));

测试

用下面的命令测试:

1
bun run src/lib/github.ts

可以显示下面的结果:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[
{
commitHash: "d511e9744b7b29b723321ca81674b1e19d732973",
commitMessage: "Version Packages (#934)\n\nCo-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
commitAuthorName: "Sébastien Vanvelthem",
commitAuthorAvatar: "",
commitDate: "2025-03-18T16:33:55Z",
}, {
commitHash: "eb51a431f00dee25ffd8de66dcb144dde64833cf",
commitMessage: "feat: next version (#933)\n\nCo-authored-by: Sebastien Vanvelthem <sebastien.vanvelthem@weareretail.ai>",
commitAuthorName: "Sébastien Vanvelthem",
commitAuthorAvatar: "",
commitDate: "2025-03-18T16:26:50Z",
}, {
commitHash: "b959c5513603bd34f919a584330897938c303061",
commitMessage: "Version Packages (#931)\n\nCo-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>",
commitAuthorName: "Sébastien Vanvelthem",
commitAuthorAvatar: "",
commitDate: "2025-03-17T10:44:07Z",
}, {
commitHash: "02691c1495a43ccc3ceccf7fc809221b9ebd7cfa",
commitMessage: "feat: next version (#930)\n\nCo-authored-by: Sebastien Vanvelthem <sebastien.vanvelthem@weareretail.ai>",
commitAuthorName: "Sébastien Vanvelthem",
commitAuthorAvatar: "",
commitDate: "2025-03-17T10:41:57Z",
},
...

作者:Bearalise
出处:从零搭建基于 AI GitHub 分析平台 (10) 获取 github commit
版权:本文版权归作者所有
转载:欢迎转载,但未经作者同意,必须保留此段声明,必须在文章中给出原文链接。

请我喝杯咖啡吧~

支付宝
微信