Skip to content

Commit

Permalink
feat(): Add mantis ticket id to issue title
Browse files Browse the repository at this point in the history
  • Loading branch information
marcreichel committed Aug 15, 2022
1 parent e86db72 commit c7c1a2e
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->getProject() . '] ' . $issue->getSummary(),
title: '[MANTIS-' . $issue->getId() . '] [' . $issue->getProject() . '] ' . $issue->getSummary(),
description: $issue->getDescription() . PHP_EOL . PHP_EOL . $table,
);
}
Expand Down

0 comments on commit c7c1a2e

Please sign in to comment.