Dynamic Trigger Configuration - check this if you want to specify the URL to a text file containing the Gerrit trigger configuration. This text file will be automatically fetched at regular intervals, and the trigger configuration will be updated accordingly.

The URL must be in a format that can be parsed by java.net.URL.

A Dynamic Trigger Configuration can co-exist peacefully with the regular way of manually specifying the trigger configuration below.

On a set interval, the plugin fetches and parses this file. The file contents should follow this syntax:

p=some/project
b^**/master/*
f~\.txt$
p=some/other/project
b^**
Legend:
p for project
b for branch
f for file
= for plain syntax
^ for ANT style syntax
~ for regexp syntax
Branch and file lines are assumed to be part of the closest preceding project line.