Skip to content

Commit

Permalink
fix: Fix typo in input parameter (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
shunsuke6 committed Mar 5, 2023
1 parent e27aa8c commit aa3536e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const action = async () => {
core.info(`Username: ${username}`);
const utcOffset = Number(core.getInput('UTC_OFFSET', {required: false}));
core.info(`UTC offset: ${utcOffset}`);
const exclude = core.getInput('EXCLUE', {required: false}).split(',');
const exclude = core.getInput('EXCLUDE', {required: false}).split(',');
core.info(`Excluded languages: ${exclude}`);
try {
// Remove old output
Expand Down

0 comments on commit aa3536e

Please sign in to comment.