mirror of
https://github.com/KieSun/all-of-frontend.git
synced 2024-11-17 04:18:15 +08:00
12 lines
395 B
JavaScript
12 lines
395 B
JavaScript
const { event: { issue, action } } = JSON.parse(process.env.GITHUB_CONTEXT)
|
|
const { author_association, body, title, number } = issue
|
|
|
|
console.log(process.env.ISSUEHOST)
|
|
|
|
if (author_association === 'OWNER') {
|
|
if (action === 'edited') {
|
|
console.log(body, title, number, '----edited')
|
|
} else if (action === 'opened') {
|
|
console.log(body, title, number, '----opened')
|
|
}
|
|
} |