在 Gerrit 中观看 pom.xml 文件合并更改

Watch pom.xml file merged changes in Gerrit

我想通过查看 Maven 项目 pom.xml 中的合并更改来接收电子邮件通知。当我在 Gerrit 设置中进行以下更改时,它会抱怨服务器错误并出现以下错误:

Gerrit 设置观看项目

Project name - ABC (maven project name having pom.xml file)
Only if - 'branch:master file:^.*\.xml$'

错误

Invalid query: 'branch:master file:^.*\.xml$'

line 1:0 no viable alternative at character '''

Only if 值是参考 link:

给出的

有人可以建议如何解决它。

另外,请建议是否可以在Only if中提供多个分支:

branch:master release/1.1

我能够使用带有以下内容的搜索框进行查询:

(branch:master OR branch:release/1.1) AND file:"^.*\.xml$"

我认为它也应该适用于观看的项目。