Skip to content

Commit

Permalink
Update src/index.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Javier Bullrich <javier@bullrich.dev>
  • Loading branch information
bretg and Bullrich authored Nov 18, 2024
1 parent 0401ddc commit 9e89ff9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ const getFiltersFromInput = (): Filters => {
requiredLabels = labels.split(",");
}

labels = getInput("ignoredLabels");
if (labels) {
ignoredLabels = labels.split(",");
let ignoredLabelsInput = getInput("ignoredLabels");
if (ignoredLabelsInput) {
ignoredLabels = ignoredLabelsInput.split(",");
}

return { daysStale, noReviews, ignoreDrafts, requiredLabels, ignoredLabels };
Expand Down

0 comments on commit 9e89ff9

Please sign in to comment.