Skip to content

Commit 6073039

Browse files
committed
Release v1.2.3
1 parent f406bc0 commit 6073039

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ jobs:
55
add-reviews:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: kentaro-m/[email protected].2
8+
- uses: kentaro-m/[email protected].3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
add-reviews:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: kentaro-m/[email protected].2
19+
- uses: kentaro-m/[email protected].3
2020
with:
2121
configuration-path: '.github/some_name_for_configs.yml' # Only needed if you use something other than .github/auto_assign.yml
2222
```

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ function chooseAssignees(owner, config) {
335335
exports.chooseAssignees = chooseAssignees;
336336
function chooseUsers(candidates, desiredNumber, filterUser = '') {
337337
const filteredCandidates = candidates.filter((reviewer) => {
338-
return reviewer !== filterUser;
338+
return reviewer.toLowerCase() !== filterUser.toLowerCase();
339339
});
340340
// all-assign
341341
if (desiredNumber === 0) {

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auto-assign-action",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "Add reviewers to pull requests when pull requests are opened.",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)