Skip to content

Commit

Permalink
Remove special processing of the PR description to fix CI/CD issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Enmk committed Oct 2, 2024
1 parent 3b70291 commit 254835d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/ci/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,8 @@ def create_from_pr_message(
)

pattern = r"(#|- \[x\] +<!---)(\w+)"
matches = [match[-1] for match in re.findall(pattern, message)]
#NOTE(vnemkov): functionality of selectively skipping builds based on PR description causes issues with our CI/CD
matches = []#[match[-1] for match in re.findall(pattern, message)]
print(f"CI tags from commit message: [{matches}]")

if not debug_message: # to be skipped if debug/test
Expand Down

0 comments on commit 254835d

Please sign in to comment.