Skip to content

Commit

Permalink
Merge pull request #22 from artemeon/feat/add-mantis-issue-id-to-title
Browse files Browse the repository at this point in the history
feat(): Add mantis ticket id to issue title
  • Loading branch information
marcreichel authored Aug 15, 2022
2 parents e86db72 + c7c1a2e commit d629335
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 d629335

Please sign in to comment.