-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.js
executable file
·44 lines (35 loc) · 1005 Bytes
/
index.js
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
36
37
38
39
40
41
42
43
44
const fs = require('fs')
const YAML = require('yaml')
const core = require('@actions/core')
const cliConfigPath = `${process.env.HOME}/.jira.d/config.yml`
const configPath = `${process.env.HOME}/jira/config.yml`
const Action = require('./action')
// eslint-disable-next-line import/no-dynamic-require
const githubEvent = require(process.env.GITHUB_EVENT_PATH)
const config = YAML.parse(fs.readFileSync(configPath, 'utf8'))
async function exec () {
try {
const result = await new Action({
githubEvent,
argv: parseArgs(),
config,
}).execute()
if (result) {
const extendedConfig = Object.assign({}, config, result)
fs.writeFileSync(configPath, YAML.stringify(extendedConfig))
return
}
console.log('Failed to comment an issue.')
process.exit(78)
} catch (error) {
console.error(error)
process.exit(1)
}
}
function parseArgs () {
return {
issue: core.getInput('issue'),
comment: core.getInput('comment')
}
}
exec()