Skip to content

Commit

Permalink
Make exclusive parameter work and bump packages to current
Browse files Browse the repository at this point in the history
  • Loading branch information
mhalmagiu committed Jun 17, 2021
1 parent a49fd46 commit 5cfcf5d
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 286 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function run ()
const [owner, repo] = core.getInput('repo_name').split('/');
const issue_number = core.getInput('pr_number');
const comment = core.getInput('comment');
const exclusive = core.getInput('exclusive');
const exclusive = core.getBooleanInput('exclusive');

const allComments = await getAllComments(client, owner, repo, issue_number)

Expand Down

0 comments on commit 5cfcf5d

Please sign in to comment.