Skip to content

Commit

Permalink
Release v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kentaro-m committed Aug 30, 2022
1 parent f406bc0 commit 6073039
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.2
- uses: kentaro-m/auto-assign-action@v1.2.3
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.2
- uses: kentaro-m/auto-assign-action@v1.2.3
with:
configuration-path: '.github/some_name_for_configs.yml' # Only needed if you use something other than .github/auto_assign.yml
```
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ function chooseAssignees(owner, config) {
exports.chooseAssignees = chooseAssignees;
function chooseUsers(candidates, desiredNumber, filterUser = '') {
const filteredCandidates = candidates.filter((reviewer) => {
return reviewer !== filterUser;
return reviewer.toLowerCase() !== filterUser.toLowerCase();
});
// all-assign
if (desiredNumber === 0) {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auto-assign-action",
"version": "1.2.2",
"version": "1.2.3",
"description": "Add reviewers to pull requests when pull requests are opened.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 6073039

Please sign in to comment.