New `glob` operator for conditions in the configuration

Adds the `*=` operator for glob-style pattern matching in conditions


  • Rules

You can now use the *= operator in conditions to match values using glob patterns.

This makes it easier to target branches, labels, or files that follow naming conventions or structured patterns.

Examples:

  - branch_name *= "release/*"
  - label *= "team-*"
  - files *= foobar/**/*.py