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* () {
|
||||
let gitAuthHelper;
|
||||
try {
|
||||
if (!inputs.token) {
|
||||
throw new Error(`Input 'token' not supplied. Unable to continue.`);
|
||||
}
|
||||
// Get the repository path
|
||||
const repoPath = utils.getRepoPath(inputs.path);
|
||||
// Create a git command manager
|
||||
|
|
|
@ -35,6 +35,10 @@ export interface Inputs {
|
|||
export async function createPullRequest(inputs: Inputs): Promise<void> {
|
||||
let gitAuthHelper
|
||||
try {
|
||||
if (!inputs.token) {
|
||||
throw new Error(`Input 'token' not supplied. Unable to continue.`)
|
||||
}
|
||||
|
||||
// Get the repository path
|
||||
const repoPath = utils.getRepoPath(inputs.path)
|
||||
// Create a git command manager
|
||||
|
|
Loading…
Reference in a new issue