fix: gha input is target-branch-pattern, not target-reg-exp (#120)

This commit is contained in:
Earl Warren 2024-04-03 08:44:29 +02:00 committed by GitHub
parent 0a07bf30c8
commit e6f86f8f83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ export default class GHAArgsParser extends ArgsParser {
auth: getOrUndefined(getInput("auth")),
pullRequest: getInput("pull-request"),
targetBranch: getOrUndefined(getInput("target-branch")),
targetBranchPattern: getOrUndefined(getInput("target-reg-exp")),
targetBranchPattern: getOrUndefined(getInput("target-branch-pattern")),
folder: getOrUndefined(getInput("folder")),
gitClient: getOrUndefined(getInput("git-client")),
gitUser: getOrUndefined(getInput("git-user")),