Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
@@@JavaDevs @matt @ann @peter
@@@TeamLeads @doris

*.java   @@JavaDevs
*.adoc   @@TeamLeads

(Check(@@JavaDevs >= 2) | Check(@@TeamLeads >= 1))
  • APP BEHAVIOR < 5.0Old, up until 4.x: when a PR contains one file foo.java , the complete OR merge check was disabled. Thus, no merge checks were enforced.

  • APP BEHAVIOR >= New, starting with 5.0x: when the PR contains one file foo.java, the matching merge check Check(@@JavaDevs >= 2) is active, while the inactive merge check Check(@@TeamLeads >= 1) got stripped. Thus, it is required that two Java Devs approve the PR.

...