create-pull-request/src/main.ts

35 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-05-17 10:21:11 +02:00
import * as core from '@actions/core'
2020-07-16 10:57:13 +02:00
import {Inputs, createPullRequest} from './create-pull-request'
2020-05-17 10:21:11 +02:00
import {inspect} from 'util'
2020-07-16 10:57:13 +02:00
import * as utils from './utils'
2020-05-17 10:21:11 +02:00
async function run(): Promise<void> {
try {
2020-07-16 10:57:13 +02:00
const inputs: Inputs = {
2020-05-17 10:21:11 +02:00
token: core.getInput('token'),
path: core.getInput('path'),
commitMessage: core.getInput('commit-message'),
committer: core.getInput('committer'),
author: core.getInput('author'),
title: core.getInput('title'),
body: core.getInput('body'),
2020-07-16 10:57:13 +02:00
labels: utils.getInputAsArray('labels'),
assignees: utils.getInputAsArray('assignees'),
reviewers: utils.getInputAsArray('reviewers'),
teamReviewers: utils.getInputAsArray('team-reviewers'),
milestone: Number(core.getInput('milestone')),
draft: core.getInput('draft') === 'true',
2020-05-17 10:21:11 +02:00
branch: core.getInput('branch'),
pushToFork: core.getInput('push-to-fork'),
2020-07-19 06:58:50 +02:00
base: core.getInput('base')
2020-05-17 10:21:11 +02:00
}
core.debug(`Inputs: ${inspect(inputs)}`)
2020-07-16 10:57:13 +02:00
await createPullRequest(inputs)
2020-05-17 10:21:11 +02:00
} catch (error) {
core.setFailed(error.message)
}
}
run()