Skip to content

Commit

Permalink
Do not trigger tests on code-checks signature
Browse files Browse the repository at this point in the history
  • Loading branch information
iarspider committed Dec 6, 2023
1 parent 417d609 commit a223925
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions process_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1429,8 +1429,10 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F
if ctype == "+1":
for sign in selected_cats:
signatures[sign] = "approved"
if (test_comment is None) and (
(repository in auto_test_repo) or ("*" in auto_test_repo)
if (
(test_comment is None)
and ((repository in auto_test_repo) or ("*" in auto_test_repo))
and sign != "code-checks"
):
test_comment = event["value"]["comment"]
# if sign == "orp":
Expand Down

0 comments on commit a223925

Please sign in to comment.