use separate client for branch and pull operations
This commit is contained in:
parent
f5bdca7bbf
commit
b793f780d4
2 changed files with 14 additions and 12 deletions
13
dist/index.js
vendored
13
dist/index.js
vendored
|
@ -356,8 +356,9 @@ function createPullRequest(inputs) {
|
||||||
core.endGroup();
|
core.endGroup();
|
||||||
core.startGroup('Determining the base and head repositories');
|
core.startGroup('Determining the base and head repositories');
|
||||||
const baseRemote = gitConfigHelper.getGitRemote();
|
const baseRemote = gitConfigHelper.getGitRemote();
|
||||||
// Init the GitHub client
|
// Init the GitHub clients
|
||||||
const githubHelper = new github_helper_1.GitHubHelper(baseRemote.hostname, inputs.token);
|
const ghBranch = new github_helper_1.GitHubHelper(baseRemote.hostname, inputs.gitToken);
|
||||||
|
const ghPull = new github_helper_1.GitHubHelper(baseRemote.hostname, inputs.token);
|
||||||
// Determine the head repository; the target for the pull request branch
|
// Determine the head repository; the target for the pull request branch
|
||||||
const branchRemoteName = inputs.pushToFork ? 'fork' : 'origin';
|
const branchRemoteName = inputs.pushToFork ? 'fork' : 'origin';
|
||||||
const branchRepository = inputs.pushToFork
|
const branchRepository = inputs.pushToFork
|
||||||
|
@ -366,8 +367,8 @@ function createPullRequest(inputs) {
|
||||||
if (inputs.pushToFork) {
|
if (inputs.pushToFork) {
|
||||||
// Check if the supplied fork is really a fork of the base
|
// Check if the supplied fork is really a fork of the base
|
||||||
core.info(`Checking if '${branchRepository}' is a fork of '${baseRemote.repository}'`);
|
core.info(`Checking if '${branchRepository}' is a fork of '${baseRemote.repository}'`);
|
||||||
const baseParentRepository = yield githubHelper.getRepositoryParent(baseRemote.repository);
|
const baseParentRepository = yield ghBranch.getRepositoryParent(baseRemote.repository);
|
||||||
const branchParentRepository = yield githubHelper.getRepositoryParent(branchRepository);
|
const branchParentRepository = yield ghBranch.getRepositoryParent(branchRepository);
|
||||||
if (branchParentRepository == null) {
|
if (branchParentRepository == null) {
|
||||||
throw new Error(`Repository '${branchRepository}' is not a fork. Unable to continue.`);
|
throw new Error(`Repository '${branchRepository}' is not a fork. Unable to continue.`);
|
||||||
}
|
}
|
||||||
|
@ -469,7 +470,7 @@ function createPullRequest(inputs) {
|
||||||
// Create signed commits via the GitHub API
|
// Create signed commits via the GitHub API
|
||||||
const stashed = yield git.stashPush(['--include-untracked']);
|
const stashed = yield git.stashPush(['--include-untracked']);
|
||||||
yield git.checkout(inputs.branch);
|
yield git.checkout(inputs.branch);
|
||||||
const pushSignedCommitsResult = yield githubHelper.pushSignedCommits(result.branchCommits, result.baseSha, repoPath, branchRepository, inputs.branch);
|
const pushSignedCommitsResult = yield ghBranch.pushSignedCommits(result.branchCommits, result.baseSha, repoPath, branchRepository, inputs.branch);
|
||||||
outputs.set('pull-request-head-sha', pushSignedCommitsResult.sha);
|
outputs.set('pull-request-head-sha', pushSignedCommitsResult.sha);
|
||||||
outputs.set('pull-request-commits-verified', pushSignedCommitsResult.verified.toString());
|
outputs.set('pull-request-commits-verified', pushSignedCommitsResult.verified.toString());
|
||||||
yield git.checkout('-');
|
yield git.checkout('-');
|
||||||
|
@ -488,7 +489,7 @@ function createPullRequest(inputs) {
|
||||||
}
|
}
|
||||||
if (result.hasDiffWithBase) {
|
if (result.hasDiffWithBase) {
|
||||||
core.startGroup('Create or update the pull request');
|
core.startGroup('Create or update the pull request');
|
||||||
const pull = yield githubHelper.createOrUpdatePullRequest(inputs, baseRemote.repository, branchRepository);
|
const pull = yield ghPull.createOrUpdatePullRequest(inputs, baseRemote.repository, branchRepository);
|
||||||
outputs.set('pull-request-number', pull.number.toString());
|
outputs.set('pull-request-number', pull.number.toString());
|
||||||
outputs.set('pull-request-url', pull.html_url);
|
outputs.set('pull-request-url', pull.html_url);
|
||||||
if (pull.created) {
|
if (pull.created) {
|
||||||
|
|
|
@ -46,8 +46,9 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
|
||||||
|
|
||||||
core.startGroup('Determining the base and head repositories')
|
core.startGroup('Determining the base and head repositories')
|
||||||
const baseRemote = gitConfigHelper.getGitRemote()
|
const baseRemote = gitConfigHelper.getGitRemote()
|
||||||
// Init the GitHub client
|
// Init the GitHub clients
|
||||||
const githubHelper = new GitHubHelper(baseRemote.hostname, inputs.token)
|
const ghBranch = new GitHubHelper(baseRemote.hostname, inputs.gitToken)
|
||||||
|
const ghPull = new GitHubHelper(baseRemote.hostname, inputs.token)
|
||||||
// Determine the head repository; the target for the pull request branch
|
// Determine the head repository; the target for the pull request branch
|
||||||
const branchRemoteName = inputs.pushToFork ? 'fork' : 'origin'
|
const branchRemoteName = inputs.pushToFork ? 'fork' : 'origin'
|
||||||
const branchRepository = inputs.pushToFork
|
const branchRepository = inputs.pushToFork
|
||||||
|
@ -58,11 +59,11 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
|
||||||
core.info(
|
core.info(
|
||||||
`Checking if '${branchRepository}' is a fork of '${baseRemote.repository}'`
|
`Checking if '${branchRepository}' is a fork of '${baseRemote.repository}'`
|
||||||
)
|
)
|
||||||
const baseParentRepository = await githubHelper.getRepositoryParent(
|
const baseParentRepository = await ghBranch.getRepositoryParent(
|
||||||
baseRemote.repository
|
baseRemote.repository
|
||||||
)
|
)
|
||||||
const branchParentRepository =
|
const branchParentRepository =
|
||||||
await githubHelper.getRepositoryParent(branchRepository)
|
await ghBranch.getRepositoryParent(branchRepository)
|
||||||
if (branchParentRepository == null) {
|
if (branchParentRepository == null) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Repository '${branchRepository}' is not a fork. Unable to continue.`
|
`Repository '${branchRepository}' is not a fork. Unable to continue.`
|
||||||
|
@ -207,7 +208,7 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
|
||||||
// Create signed commits via the GitHub API
|
// Create signed commits via the GitHub API
|
||||||
const stashed = await git.stashPush(['--include-untracked'])
|
const stashed = await git.stashPush(['--include-untracked'])
|
||||||
await git.checkout(inputs.branch)
|
await git.checkout(inputs.branch)
|
||||||
const pushSignedCommitsResult = await githubHelper.pushSignedCommits(
|
const pushSignedCommitsResult = await ghBranch.pushSignedCommits(
|
||||||
result.branchCommits,
|
result.branchCommits,
|
||||||
result.baseSha,
|
result.baseSha,
|
||||||
repoPath,
|
repoPath,
|
||||||
|
@ -235,7 +236,7 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
|
||||||
|
|
||||||
if (result.hasDiffWithBase) {
|
if (result.hasDiffWithBase) {
|
||||||
core.startGroup('Create or update the pull request')
|
core.startGroup('Create or update the pull request')
|
||||||
const pull = await githubHelper.createOrUpdatePullRequest(
|
const pull = await ghPull.createOrUpdatePullRequest(
|
||||||
inputs,
|
inputs,
|
||||||
baseRemote.repository,
|
baseRemote.repository,
|
||||||
branchRepository
|
branchRepository
|
||||||
|
|
Loading…
Reference in a new issue