mirror of
https://github.com/KieSun/all-of-frontend.git
synced 2024-11-11 09:28:14 +08:00
26 lines
433 B
JavaScript
26 lines
433 B
JavaScript
const axios = require("axios");
|
|
const {
|
|
event: {
|
|
comment,
|
|
issue: { number },
|
|
},
|
|
} = JSON.parse(process.env.GITHUB_CONTEXT);
|
|
const {
|
|
body,
|
|
updated_at,
|
|
html_url,
|
|
id,
|
|
user: { avatar_url, login },
|
|
} = comment;
|
|
const host = process.env.COMMENTHOST;
|
|
|
|
axios.post(host, {
|
|
issueId: number,
|
|
commentId: id,
|
|
htmlUrl: html_url,
|
|
userName: login,
|
|
avatarUrl: avatar_url,
|
|
content: body,
|
|
updatedAt: updated_at,
|
|
});
|