Skip to content

Commit

Permalink
fix-ci (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristinaNikolaevaa authored and afalaleev committed Oct 11, 2023
1 parent 2c17c33 commit 7439b51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ def trigger_proxy_action(head_ref_branch, base_ref_branch, github_ref, github_sh
is_develop_branch = github_ref in ['refs/heads/develop', 'refs/heads/master']
is_tag_creating = 'refs/tags/' in github_ref
is_version_branch = re.match(VERSION_BRANCH_TEMPLATE, github_ref.replace("refs/heads/", "")) is not None
is_FTS_labeled_not_draft = 'FullTestSuit' in labels and is_draft != "true"
is_extended_FTS_labeled_not_draft = 'ExtendedFullTestSuit' in labels and is_draft != "true"
is_FTS_labeled_not_draft = 'fullTestSuit' in labels and is_draft != "true"
is_extended_FTS_labeled_not_draft = 'extendedFullTestSuit' in labels and is_draft != "true"

if is_extended_FTS_labeled_not_draft:
test_set = "extendedFullTestSuite"
Expand Down

0 comments on commit 7439b51

Please sign in to comment.