Versions Compared

Key

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

...

Expand
titleMatching Rule - apply notification conditions to components using pattern matching techniques

Every notification rule will have a Matching Rule to assign a notification rule to components. Iguana supports glob expression (*), boolean(and/or), or regular expressions (regex) with Tags to create matching rules. To use regex, simply enclose the expression in slash characters /<regex>/. Iguana X does not support the exclamation point for regex !<regex>.

The table below provides an overview of example pattern matching techniques you can combine to create a matching rule.

Negation

Type

Sample

TypeDescriptionDescription

Wildcard

*

Wildcard

Apply to all components.

#dev*

Apply to components with #dev followed by 0 or more characters

OR

#prod #devOR

Apply to components with either #prod or #dev tags.

AND

"#prod #dev"AND

Apply to components with both #prod and #dev tags.

Negation

-#prod

Apply to all components without the #prod tag.

“#prod -#dev”

Apply to all components with the #prod tag and without #dev.

...