Skip to content

Commit

Permalink
add head sha to comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Jun 13, 2024
1 parent dfdf36a commit 82d597b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/meteor/reporters/jira.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@ class JIRAReporter implements Reporter {
await fetch(`${this.url}/rest/api/2/issue/${issue}/comment`, {
method: 'POST',
body: JSON.stringify({
Body: `Test run ${payload.run} failed
branch: ${payload.branch}`,
body: `Test run ${payload.run} failed
branch: ${payload.branch}
headSha: ${payload.headSha}`,
}),
headers: {
'Content-Type': 'application/json',
Expand Down

0 comments on commit 82d597b

Please sign in to comment.