Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioh8010 committed Apr 4, 2024
1 parent ce6cf3f commit c75db74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import GithubUtils from '@github/libs/GithubUtils';

// Parse the stringified JSON array of PR numbers, and cast each from String -> Number
const PRList = ActionUtils.getJSONInput('PR_LIST', {required: true}) as number[];
console.log(`Got PR list: ${PRList}`);
console.log('Got PR list: ', String(PRList));

const releaseBody = GithubUtils.getReleaseBody(PRList);
console.log(`Generated release body: ${releaseBody}`);
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/javascript/getReleaseBody/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11458,7 +11458,7 @@ const ActionUtils = __importStar(__nccwpck_require__(6981));
const GithubUtils_1 = __importDefault(__nccwpck_require__(9296));
// Parse the stringified JSON array of PR numbers, and cast each from String -> Number
const PRList = ActionUtils.getJSONInput('PR_LIST', { required: true });
console.log(`Got PR list: ${PRList}`);
console.log('Got PR list: ', String(PRList));
const releaseBody = GithubUtils_1.default.getReleaseBody(PRList);
console.log(`Generated release body: ${releaseBody}`);
core.setOutput('RELEASE_BODY', releaseBody);
Expand Down

0 comments on commit c75db74

Please sign in to comment.