Fix function name

This commit is contained in:
Peter Evans 2020-07-17 21:06:16 +09:00
parent 24012f5c84
commit 1a182d0679
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View file

@ -10590,7 +10590,7 @@ function createPullRequest(inputs) {
core.info(`Pull request branch target repository set to ${remote.repository}`);
if (remote.protocol == 'HTTPS') {
core.startGroup('Configuring credential for HTTPS authentication');
yield gitAuthHelper.configureAuth(inputs.token);
yield gitAuthHelper.configureToken(inputs.token);
core.endGroup();
}
// Determine if the checked out ref is a valid base for a pull request

View file

@ -66,7 +66,7 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
if (remote.protocol == 'HTTPS') {
core.startGroup('Configuring credential for HTTPS authentication')
await gitAuthHelper.configureAuth(inputs.token)
await gitAuthHelper.configureToken(inputs.token)
core.endGroup()
}