Skip to content

Commit

Permalink
fix(github): increases pr title length
Browse files Browse the repository at this point in the history
- This should avoid trimming most of our PR titles from Jira tickets
  • Loading branch information
Toolo authored and tagoro9 committed Aug 10, 2020
1 parent b70737f commit 5ca8737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git/Github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ export class Github implements Remote {
if (issues.length > 0) {
return {
description: replace(/\r\n/g, '\n', issues[0].description || ''),
summary: take(60, `${issues[0].key}: ${issues[0].summary}`),
summary: take(100, `${issues[0].key}: ${issues[0].summary}`),
};
}
if (branchInfo.commits.length > 0) {
Expand Down

0 comments on commit 5ca8737

Please sign in to comment.