Skip to content

Commit

Permalink
(wip)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassabreu committed Jan 29, 2024
1 parent 08fce16 commit 02ed3d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@master

- name: Adding markdown
run: echo '### Hello world! ' >> $GITHUB_STEP_SUMMARY

- name: clover file not found
uses: ./.
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -89843,7 +89843,7 @@ var run = function () { return __awaiter$1(void 0, void 0, void 0, function () {
case 16: return [4 /*yield*/, github.rest.issues.createComment(__assign(__assign({}, utils$2.context.repo), { issue_number: utils$2.context.issue.number, body: body }))];
case 17:
_j.sent();
return [4 /*yield*/, coreExports.summary.addQuote("sad").addSeparator().write()];
return [4 /*yield*/, coreExports.summary.addHeading("saddest?").addQuote("sad").addSeparator().write()];
case 18:
_j.sent();
return [2 /*return*/];
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ ${signature}`;
body,
});

await summary.addQuote("sad").addSeparator().write();
await summary.addHeading("saddest?").addQuote("sad").addSeparator().write();
};

run().catch((err: Error) => setFailed(err + " Stack: " + err.stack));

0 comments on commit 02ed3d4

Please sign in to comment.