Skip to content

Commit

Permalink
Merge pull request #46 from Br3nd3n/typo-fix-comment-body
Browse files Browse the repository at this point in the history
tpyo fix
  • Loading branch information
willem-delbare authored Apr 5, 2024
2 parents 1c1bbfb + 49b19a5 commit 0b40078
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ async function createReviewComments(secretKey, scanId) {
path: finding.file,
line: finding.end_line,
start_line: finding.start_line,
body: `${finding.title}\n${finding.description}\n**Remediation:** ${finding.remediation}\n**Aikido Security:**: [View details](https://app.aikido.dev/featurebranch/scan/${scanId}?groupId=${findingResponse.group_id})`
body: `${finding.title}\n${finding.description}\n**Remediation:** ${finding.remediation}\n**Aikido Security:** [View details](https://app.aikido.dev/featurebranch/scan/${scanId}?groupId=${findingResponse.group_id})`
}));
if (findings.length > 0) {
await (0, postReviewComment_1.postFindingsAsReviewComments)(findings);
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ async function createReviewComments(secretKey: string, scanId: number): Promise<
path: finding.file,
line: finding.end_line,
start_line: finding.start_line,
body: `${finding.title}\n${finding.description}\n**Remediation:** ${finding.remediation}\n**Aikido Security:**: [View details](https://app.aikido.dev/featurebranch/scan/${scanId}?groupId=${findingResponse.group_id})`
body: `${finding.title}\n${finding.description}\n**Remediation:** ${finding.remediation}\n**Aikido Security:** [View details](https://app.aikido.dev/featurebranch/scan/${scanId}?groupId=${findingResponse.group_id})`
}
))

Expand Down

0 comments on commit 0b40078

Please sign in to comment.