Skip to content

Commit

Permalink
Merge pull request #104 from nwalters512/remove-bold-italic
Browse files Browse the repository at this point in the history
Don't display comment with bold or italics
  • Loading branch information
ibakshay committed Jun 30, 2022
2 parents 3b10866 + 0ac8ba1 commit adf5016
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pullrequest/pullRequestCommentContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function dco(signed: boolean, committerMap: CommitterMap): string {
let lineOne = (input.getCustomNotSignedPrComment() || `<br/>Thank you for your submission, we really appreciate it. Like many open-source projects, we ask that $you sign our [Developer Certificate of Origin](${input.getPathToDocument()}) before we can accept your contribution. You can sign the DCO by just posting a Pull Request Comment same as the below format.<br/>`).replace('$you', you)
let text = `**DCO Assistant Lite bot:** ${lineOne}
- - -
***${input.getCustomPrSignComment() || "I have read the DCO Document and I hereby sign the DCO"}***
${input.getCustomPrSignComment() || "I have read the DCO Document and I hereby sign the DCO"}
- - -
`

Expand Down Expand Up @@ -72,7 +72,7 @@ function cla(signed: boolean, committerMap: CommitterMap): string {
let lineOne = (input.getCustomNotSignedPrComment() || `<br/>Thank you for your submission, we really appreciate it. Like many open-source projects, we ask that $you sign our [Contributor License Agreement](${input.getPathToDocument()}) before we can accept your contribution. You can sign the CLA by just posting a Pull Request Comment same as the below format.<br/>`).replace('$you', you)
let text = `**CLA Assistant Lite bot:** ${lineOne}
- - -
***${input.getCustomPrSignComment() || "I have read the CLA Document and I hereby sign the CLA"}***
${input.getCustomPrSignComment() || "I have read the CLA Document and I hereby sign the CLA"}
- - -
`

Expand Down

0 comments on commit adf5016

Please sign in to comment.