mirror of
https://code.forgejo.org/actions/git-backporting
synced 2025-03-15 14:44:39 +01:00
fix: gha input is target-branch-pattern, not target-reg-exp (#120)
This commit is contained in:
parent
0a07bf30c8
commit
e6f86f8f83
2 changed files with 2 additions and 2 deletions
2
dist/gha/index.js
vendored
2
dist/gha/index.js
vendored
|
@ -192,7 +192,7 @@ class GHAArgsParser extends args_parser_1.default {
|
||||||
auth: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("auth")),
|
auth: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("auth")),
|
||||||
pullRequest: (0, core_1.getInput)("pull-request"),
|
pullRequest: (0, core_1.getInput)("pull-request"),
|
||||||
targetBranch: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("target-branch")),
|
targetBranch: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("target-branch")),
|
||||||
targetBranchPattern: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("target-reg-exp")),
|
targetBranchPattern: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("target-branch-pattern")),
|
||||||
folder: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("folder")),
|
folder: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("folder")),
|
||||||
gitClient: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("git-client")),
|
gitClient: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("git-client")),
|
||||||
gitUser: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("git-user")),
|
gitUser: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("git-user")),
|
||||||
|
|
|
@ -17,7 +17,7 @@ export default class GHAArgsParser extends ArgsParser {
|
||||||
auth: getOrUndefined(getInput("auth")),
|
auth: getOrUndefined(getInput("auth")),
|
||||||
pullRequest: getInput("pull-request"),
|
pullRequest: getInput("pull-request"),
|
||||||
targetBranch: getOrUndefined(getInput("target-branch")),
|
targetBranch: getOrUndefined(getInput("target-branch")),
|
||||||
targetBranchPattern: getOrUndefined(getInput("target-reg-exp")),
|
targetBranchPattern: getOrUndefined(getInput("target-branch-pattern")),
|
||||||
folder: getOrUndefined(getInput("folder")),
|
folder: getOrUndefined(getInput("folder")),
|
||||||
gitClient: getOrUndefined(getInput("git-client")),
|
gitClient: getOrUndefined(getInput("git-client")),
|
||||||
gitUser: getOrUndefined(getInput("git-user")),
|
gitUser: getOrUndefined(getInput("git-user")),
|
||||||
|
|
Loading…
Add table
Reference in a new issue