Change the comment-added-contains-event string for the release-verify
and release-merge templates to the same regexes used in all other verify
and merge templates, instead of custom versions that didn't work;
verify now uses '^Patch Set\s+\d+:\s+(recheck|reverify)\s*$'
merge now uses '^Patch Set\s+\d+:\s+remerge\s*$'
Change-Id: I4436568046ffbc15225115726e2664824bd6bea2
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
exclude-no-code-change: false
- draft-published-event
- comment-added-contains-event:
- comment-contains-value: |
- ^Patch Set[ ]+[0-9]+:([ ]+|[\n]+)(recheck|reverify)$
+ # yamllint disable-line rule:line-length
+ comment-contains-value: '^Patch Set\s+\d+:\s+(recheck|reverify)\s*$'
#####################
# Job Configuration #
gerrit_merge_triggers:
- change-merged-event
- comment-added-contains-event:
- comment-contains-value: remerge$
+ comment-contains-value: '^Patch Set\s+\d+:\s+remerge\s*$'
#####################
# Job Configuration #
--- /dev/null
+---
+fixes:
+ - |
+ Change the comment-added-contains-event strings for the release-verify and
+ release-merge templates to the same regexes used in other verify and merge
+ templates, instead of custom versions that didn't seem to work;
+ verify now uses '^Patch Set\s+\d+:\s+(recheck|reverify)\s*$'
+ merge now uses '^Patch Set\s+\d+:\s+remerge\s*$'