Skip to content

Commit

Permalink
refactor: #23
Browse files Browse the repository at this point in the history
  • Loading branch information
raunakgurud09 committed Jan 31, 2024
1 parent a4915fd commit 0425f16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59392,6 +59392,7 @@ async function run() {
(0, core_1.info)(summary);
(0, core_1.setFailed)(response.errors);
}
console.log(response);
(0, core_1.info)(`Welcome ${(_a = response === null || response === void 0 ? void 0 : response.me) === null || _a === void 0 ? void 0 : _a.name} to this action`);
(0, core_1.debug)(JSON.stringify({
host,
Expand Down
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ export async function run() {
setOutput("result_info", response.errors);

info(summary);

setFailed(response.errors);
}

console.log(response);

info(`Welcome ${response?.me?.name} to this action`);
debug(
JSON.stringify({
Expand Down

0 comments on commit 0425f16

Please sign in to comment.