Skip to content

Commit 00f1f26

Browse files
Release v1.6.4 (#583)
Co-authored-by: simoneb <[email protected]>
1 parent 583605f commit 00f1f26

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

dist/index.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32242,10 +32242,11 @@ class Minimatch {
3224232242
for (let i = 0; i < globParts.length - 1; i++) {
3224332243
for (let j = i + 1; j < globParts.length; j++) {
3224432244
const matched = this.partsMatch(globParts[i], globParts[j], !this.preserveMultipleSlashes);
32245-
if (!matched)
32246-
continue;
32247-
globParts[i] = matched;
32248-
globParts[j] = [];
32245+
if (matched) {
32246+
globParts[i] = [];
32247+
globParts[j] = matched;
32248+
break;
32249+
}
3224932250
}
3225032251
}
3225132252
return globParts.filter(gs => gs.length);

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": "github-action-check-linked-issues",
3-
"version": "1.6.3",
3+
"version": "1.6.4",
44
"description": "GitHub action to check if pull requests have their corresponding issues.",
55
"author": {
66
"name": "NearForm",

0 commit comments

Comments
 (0)