Skip to content

Commit

Permalink
fixes label & caseSensitive argument bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Bildner committed Jan 25, 2022
1 parent b594503 commit 4016023
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ArgumentContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const argumentContext = {
keywords: inputParser.getInput('keywords', {type: 'array', default: ['TODO']}) as Array<string>,
bodyKeywords: inputParser.getInput('bodyKeywords', {type: 'array', default: []}) as Array<string>,

caseSensitive: inputParser.getInput('label', {type: "boolean", default: true}) as boolean,
caseSensitive: inputParser.getInput('caseSensitive', {type: "boolean", default: true}) as boolean,

titleSimilarity: inputParser.getInput("taskSystem", {
type: "number",
Expand Down

0 comments on commit 4016023

Please sign in to comment.