feat(filters): filtering for raw releaseTags (#506)

feat(filters): add releaseTags filtering
This commit is contained in:
ze0s 2022-10-18 23:52:36 +02:00 committed by GitHub
parent dbabb26b83
commit 5183f7683a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 166 additions and 18 deletions

View file

@ -15,6 +15,9 @@ interface Filter {
use_regex: boolean;
match_release_groups: string;
except_release_groups: string;
match_release_tags: string;
except_release_tags: string;
use_regex_release_tags: boolean;
scene: boolean;
origins: string[];
except_origins: string[];