-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.js
executable file
·47 lines (38 loc) · 1.12 KB
/
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
45
46
47
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')
const githubToken = process.env.GITHUB_TOKEN
// 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,
githubToken,
}).execute()
if (result) {
console.log(`Created issues: ${result.issues}`)
// Produce a well-formed JSON array of all newly created issue keys
core.setOutput("issues", JSON.stringify(result.issues, null, 4))
return
}
process.exit(0)
} catch (error) {
console.error(error)
process.exit(1)
}
}
function parseArgs () {
return {
project: core.getInput('project'),
issuetype: core.getInput('issuetype'),
description: core.getInput('description')
}
}
exec()