Skip to content

Commit

Permalink
mass-rebuild-reporter: Fix format of issue body
Browse files Browse the repository at this point in the history
We want to create a checklist in the issue body.
  • Loading branch information
tstellar committed Jan 16, 2025
1 parent 0cb2b0d commit 6788c6e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/mass-rebuild-reporter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ jobs:
if (regressions.length == 0)
return;
regressions.forEach(function(value){
comment = comment.concat('\n', value.name);
comment = comment.concat(': ', value.url);
comment = comment + `- [ ] [${value.name}](${value.url})\n`
});
console.log(comment);
const issue = await github.rest.issues.create({
Expand Down

0 comments on commit 6788c6e

Please sign in to comment.