Skip to content

Commit

Permalink
Add project name to issue title
Browse files Browse the repository at this point in the history
  • Loading branch information
marcreichel committed Jun 28, 2022
1 parent 7a68314 commit d9677f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dto/GithubIssue.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
}
Expand Down

0 comments on commit d9677f8

Please sign in to comment.