From c9fa0e0aa042a76d5d6ccc1fc56f3f70eb39b8be Mon Sep 17 00:00:00 2001 From: dsotirakis Date: Fri, 19 Mar 2021 14:37:58 +0200 Subject: [PATCH] Add error info --- src/github-helper.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/github-helper.ts b/src/github-helper.ts index 4debadc..67fb051 100644 --- a/src/github-helper.ts +++ b/src/github-helper.ts @@ -66,6 +66,13 @@ export class GitHubHelper { ) { core.info(`A pull request already exists for ${headBranch}`) } else { + core.info( + `ERROR: title:${inputs.title} + head: ${headBranch}, + base: ${inputs.base}, + body: ${inputs.body}, + draft: ${inputs.draft}` + ) throw e } }