Uses standard Java regular expression syntax. Examples:
release-.*
Matches jobs names like release-core or release-test, but not a job with the name staging-job.
level-[ABCDE] (alternatively level-[A-E])
Matches level-A through level-E, but neither level-1 nor level-F.
PROD_\d{2,4}_\w+
Matches PROD_01_calendar, PROD_333_project3, PROD_1234_moduleA, etc.
teamA/.*
Matches all jobs inside the teamA folder, including subfolders, but excluding the teamA folder itself.