mirror of
https://github.com/KieSun/all-of-frontend.git
synced 2024-11-22 23:08:14 +08:00
20 lines
550 B
JavaScript
20 lines
550 B
JavaScript
const axios = require('axios')
|
|
const { event: { issue, action } } = JSON.parse(process.env.GITHUB_CONTEXT)
|
|
const { author_association, body, title, number } = issue
|
|
const host = process.env.ISSUEHOST
|
|
|
|
if (author_association === 'OWNER') {
|
|
if (action === 'edited') {
|
|
axios.put(host, {
|
|
name: title,
|
|
issueId: number,
|
|
content: body
|
|
})
|
|
} else if (action === 'opened') {
|
|
axios.post(host, {
|
|
name: title,
|
|
issueId: number,
|
|
content: body
|
|
})
|
|
}
|
|
} |