mirror of
https://code.forgejo.org/actions/git-backporting.git
synced 2025-02-22 10:35:43 -05:00
fix: removed 'powered by..' pr body suffix
This commit is contained in:
parent
0fbe0f6f37
commit
6869becb3e
4 changed files with 4 additions and 10 deletions
4
dist/cli/index.js
vendored
4
dist/cli/index.js
vendored
|
@ -171,7 +171,7 @@ class PullRequestConfigsParser extends configs_parser_1.default {
|
|||
}
|
||||
}
|
||||
const bodyPrefix = args.bodyPrefix ?? `**Backport:** ${originalPullRequest.htmlUrl}\r\n\r\n`;
|
||||
const body = args.body ?? `${originalPullRequest.body}\r\n\r\nPowered by [BPer](https://github.com/lampajr/backporting).`;
|
||||
const body = args.body ?? `${originalPullRequest.body}`;
|
||||
return {
|
||||
author: args.gitUser,
|
||||
title: args.title ?? `[${args.targetBranch}] ${originalPullRequest.title}`,
|
||||
|
@ -181,8 +181,6 @@ class PullRequestConfigsParser extends configs_parser_1.default {
|
|||
targetRepo: originalPullRequest.targetRepo,
|
||||
sourceRepo: originalPullRequest.targetRepo,
|
||||
branchName: args.bpBranchName,
|
||||
// nCommits: 0, // not needed, but required by the
|
||||
// commits: [] // not needed
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
4
dist/gha/index.js
vendored
4
dist/gha/index.js
vendored
|
@ -165,7 +165,7 @@ class PullRequestConfigsParser extends configs_parser_1.default {
|
|||
}
|
||||
}
|
||||
const bodyPrefix = args.bodyPrefix ?? `**Backport:** ${originalPullRequest.htmlUrl}\r\n\r\n`;
|
||||
const body = args.body ?? `${originalPullRequest.body}\r\n\r\nPowered by [BPer](https://github.com/lampajr/backporting).`;
|
||||
const body = args.body ?? `${originalPullRequest.body}`;
|
||||
return {
|
||||
author: args.gitUser,
|
||||
title: args.title ?? `[${args.targetBranch}] ${originalPullRequest.title}`,
|
||||
|
@ -175,8 +175,6 @@ class PullRequestConfigsParser extends configs_parser_1.default {
|
|||
targetRepo: originalPullRequest.targetRepo,
|
||||
sourceRepo: originalPullRequest.targetRepo,
|
||||
branchName: args.bpBranchName,
|
||||
// nCommits: 0, // not needed, but required by the
|
||||
// commits: [] // not needed
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ export default class PullRequestConfigsParser extends ConfigsParser {
|
|||
}
|
||||
|
||||
const bodyPrefix = args.bodyPrefix ?? `**Backport:** ${originalPullRequest.htmlUrl}\r\n\r\n`;
|
||||
const body = args.body ?? `${originalPullRequest.body}\r\n\r\nPowered by [BPer](https://github.com/lampajr/backporting).`;
|
||||
const body = args.body ?? `${originalPullRequest.body}`;
|
||||
|
||||
return {
|
||||
author: args.gitUser,
|
||||
|
@ -65,8 +65,6 @@ export default class PullRequestConfigsParser extends ConfigsParser {
|
|||
targetRepo: originalPullRequest.targetRepo,
|
||||
sourceRepo: originalPullRequest.targetRepo,
|
||||
branchName: args.bpBranchName,
|
||||
// nCommits: 0, // not needed, but required by the
|
||||
// commits: [] // not needed
|
||||
};
|
||||
}
|
||||
}
|
|
@ -81,7 +81,7 @@ describe("pull request config parser", () => {
|
|||
url: undefined,
|
||||
htmlUrl: undefined,
|
||||
title: "[prod] PR Title",
|
||||
body: "**Backport:** https://github.com/owner/reponame/pull/2368\r\n\r\nPlease review and merge\r\n\r\nPowered by [BPer](https://github.com/lampajr/backporting).",
|
||||
body: "**Backport:** https://github.com/owner/reponame/pull/2368\r\n\r\nPlease review and merge",
|
||||
reviewers: ["gh-user", "that-s-a-user"],
|
||||
assignees: [],
|
||||
targetRepo: {
|
||||
|
|
Loading…
Add table
Reference in a new issue