Skip to content

Commit

Permalink
chore: change ignore-users input to camel casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol-Baranwal committed Nov 16, 2023
1 parent cd5e454 commit a5641c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ inputs:
description: 'To filter the issues that are assigned to the author'
default: 'false'
required: false
ignore-users:
ignoreUsers:
description: 'Specify usernames that should be ignored while running this workflow'
default: 'false'
required: false
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async function HandleMultipleIssues() {
const comment = core.getInput("comment");
const close = core.getInput("close") === "true" || false;
const ignoreUsers = core
.getInput("ignore-users")
.getInput("ignoreUsers")
.split(",")
.map((user) => user.trim());
const ignoreCollaboratorsInput = core.getInput("ignoreCollaborators") === "true" || false;
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function HandleMultipleIssues() {
const comment = core.getInput("comment")
const close = core.getInput("close") === "true" || false
const ignoreUsers = core
.getInput("ignore-users")
.getInput("ignoreUsers")
.split(",")
.map((user) => user.trim())
const ignoreCollaboratorsInput =
Expand Down

0 comments on commit a5641c2

Please sign in to comment.