Skip to content

Commit 26119b1

Browse files
committed
fix(ci): exclude license-flagged-but-permissive packages from license check
pilosus runs re-matches against the full pip-freeze requirement string (name==version), so a (?::|$) anchor never matches. Use a form that matches the version separator so the exclude actually applies.
1 parent 0b8616e commit 26119b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/license_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
uses: OpenVoiceOS/gh-automations/.github/workflows/license-check.yml@dev
1111
secrets: inherit
1212
with:
13-
exclude_packages: "(?i:^tqdm(:.*)?$)"
13+
exclude_packages: '(?i:^tqdm([=<>!~ @;].*)?$)'

0 commit comments

Comments
 (0)