fix: add check for missing token input (#1324)
This commit is contained in:
parent
331d02c7e2
commit
2b011faafd
3
dist/index.js
vendored
3
dist/index.js
vendored
|
@ -311,6 +311,9 @@ function createPullRequest(inputs) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
let gitAuthHelper;
|
let gitAuthHelper;
|
||||||
try {
|
try {
|
||||||
|
if (!inputs.token) {
|
||||||
|
throw new Error(`Input 'token' not supplied. Unable to continue.`);
|
||||||
|
}
|
||||||
// Get the repository path
|
// Get the repository path
|
||||||
const repoPath = utils.getRepoPath(inputs.path);
|
const repoPath = utils.getRepoPath(inputs.path);
|
||||||
// Create a git command manager
|
// Create a git command manager
|
||||||
|
|
|
@ -35,6 +35,10 @@ export interface Inputs {
|
||||||
export async function createPullRequest(inputs: Inputs): Promise<void> {
|
export async function createPullRequest(inputs: Inputs): Promise<void> {
|
||||||
let gitAuthHelper
|
let gitAuthHelper
|
||||||
try {
|
try {
|
||||||
|
if (!inputs.token) {
|
||||||
|
throw new Error(`Input 'token' not supplied. Unable to continue.`)
|
||||||
|
}
|
||||||
|
|
||||||
// Get the repository path
|
// Get the repository path
|
||||||
const repoPath = utils.getRepoPath(inputs.path)
|
const repoPath = utils.getRepoPath(inputs.path)
|
||||||
// Create a git command manager
|
// Create a git command manager
|
||||||
|
|
Loading…
Reference in a new issue