mirror of
https://github.com/kiegroup/git-backporting.git
synced 2025-06-27 21:23:48 +00:00
fix: gha skip whitespace trim on body (#73)
this also added a github workflow example
This commit is contained in:
parent
fa43ffc1dc
commit
29589a63b5
4 changed files with 136 additions and 4 deletions
4
dist/gha/index.js
vendored
4
dist/gha/index.js
vendored
|
@ -190,8 +190,8 @@ class GHAArgsParser extends args_parser_1.default {
|
|||
gitUser: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("git-user")),
|
||||
gitEmail: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("git-email")),
|
||||
title: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("title")),
|
||||
body: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("body")),
|
||||
bodyPrefix: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("body-prefix")),
|
||||
body: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("body", { trimWhitespace: false })),
|
||||
bodyPrefix: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("body-prefix", { trimWhitespace: false })),
|
||||
bpBranchName: (0, args_utils_1.getOrUndefined)((0, core_1.getInput)("bp-branch-name")),
|
||||
reviewers: (0, args_utils_1.getAsCleanedCommaSeparatedList)((0, core_1.getInput)("reviewers")),
|
||||
assignees: (0, args_utils_1.getAsCleanedCommaSeparatedList)((0, core_1.getInput)("assignees")),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue