Integrated: 1495: /backport should be allowed in PRs which have been integrated

Guoxiong Li gli at openjdk.org
Fri Jul 29 18:27:09 UTC 2022


On Sat, 9 Jul 2022 16:14:21 GMT, Guoxiong Li <gli at openjdk.org> wrote:

> Hi all,
> 
> This patch mainly solves the issue described at SKARA-1495 which makes the `backport` command be valid in a pull request which has been integrated.
> 
> But in detail, this patch has the following feature or solves the following issues:
> 
> - Currently, the commands of the pull request and the commands of the commit are not related and can't be known from each other. So when we use the commit commands, such as `tag`, in the pull request, the bot replies `Unknown command tag`. Actually, the bot should replies the message like `The command tag can not be used in pull requests.  Please try to use this command on the commit`. The change is mainly at method `CommandExtractor::extractCommands`.
> - Many places of the code use a duplicated method, named `resultingCommitHash`, this method could be put into class `PullRequest` to avoid the duplication. I refactor it in this patch.
> - Now the `backport` command can not be used in pull requests. I revise the logic to let it available in a pull request which has been integrated, mainly removing the overrided method `allowedInPullRequest` of the class `BackportCommand`.
> - The reason that these issues are not found before is that we hadn't tested all the branches of the code, especially the branches in methods `PullRequestCommandWorkItem::processCommand` and `CommitCommandWorkItem::processCommand`. So I add more test cases to test almost all the branches. And if the branch can't be tested, I add a comment to explain it.
> 
> Although it seems that many features are not related to SKARA-1495, I put them together as an enhancement of the PullRequestBot.
> 
> Best Regards,
> -- Guoxiong

This pull request has now been integrated.

Changeset: 809dc978
Author:    Guoxiong Li <gli at openjdk.org>
URL:       https://git.openjdk.org/skara/commit/809dc978a107c65ae3b38c7d45d995eaf38e9980
Stats:     295 lines in 14 files changed: 168 ins; 110 del; 17 mod

1495: /backport should be allowed in PRs which have been integrated

Reviewed-by: erikj

-------------

PR: https://git.openjdk.org/skara/pull/1341


More information about the skara-dev mailing list