Skip to content

Commit

Permalink
oopsy
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuVeber committed Jun 5, 2024
1 parent 4893e49 commit f84aa4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ jobs:
const owner = "${{github.repository_owner}}";
const repo = "${{github.event.repository.name}}";
const pull_number = ${{github.event.pull_request.number}};
const reviewers = "${{inputs.reviewers}}".split(',').filter((reviewer) => reviewer);
const team_reviewers = "${{inputs.team-reviewers}}".split(',').filter((reviewer) => reviewer);
const reviewers = "${{github.event.inputs.reviewers}}".split(',').filter((reviewer) => reviewer);
const team_reviewers = "${{github.event.inputs.team-reviewers}}".split(',').filter((reviewer) => reviewer);
console.log(`@${owner}/${repo}#${pull_number}: Requesting review from ${reviewers.concat(team_reviewers)}`);
Expand Down

0 comments on commit f84aa4b

Please sign in to comment.