Fix function name
This commit is contained in:
parent
24012f5c84
commit
1a182d0679
2 changed files with 2 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue