diff --git a/src/Dto/GithubIssue.php b/src/Dto/GithubIssue.php index ddb6a53..8b3ca0e 100644 --- a/src/Dto/GithubIssue.php +++ b/src/Dto/GithubIssue.php @@ -28,7 +28,7 @@ public static function fromMantisIssue(MantisIssue $issue): GithubIssue ]; $table = implode(PHP_EOL, $rows); return new self( - title: $issue->getSummary(), + title: '[' . $issue->getProject() . '] ' . $issue->getSummary(), description: $issue->getDescription() . PHP_EOL . PHP_EOL . $table, ); }