fix: improve logging

This commit is contained in:
Peter Evans 2021-05-14 13:47:55 +09:00
parent a6d621d73e
commit 32c71c837c
4 changed files with 7846 additions and 1 deletions

View file

@ -43,6 +43,7 @@ export class GitHubHelper {
): Promise<Pull> {
// Try to create the pull request
try {
core.info(`Attempting creation of pull request`)
const {data: pull} = await this.octokit.rest.pulls.create({
...this.parseRepository(baseRepository),
title: inputs.title,
@ -71,12 +72,14 @@ export class GitHubHelper {
}
// Update the pull request that exists for this branch and base
core.info(`Fetching existing pull request`)
const {data: pulls} = await this.octokit.rest.pulls.list({
...this.parseRepository(baseRepository),
state: 'open',
head: headBranch,
base: inputs.base
})
core.info(`Attempting update of pull request`)
const {data: pull} = await this.octokit.rest.pulls.update({
...this.parseRepository(baseRepository),
pull_number: pulls[0].number,