make gerrit commentlink case insensitive for bug and story

Make gerrit commentlink match on 'Story' and 'Bug'

Change-Id: Ib600cd326d81f0736a912719d3403cae2768c4b7
This commit is contained in:
Khai Do 2014-12-09 11:09:32 -08:00
parent 5680b06b1c
commit 08662fadad

View File

@ -143,12 +143,12 @@ class openstack_project::gerrit (
},
{
name => 'bug',
match => '\\bbug:? #?(\\d+)',
match => '\\b[Bb]ug:? #?(\\d+)',
link => 'https://launchpad.net/bugs/$1',
},
{
name => 'story',
match => '\\bstory:? #?(\\d+)',
match => '\\b[Ss]tory:? #?(\\d+)',
link => 'https://storyboard.openstack.org/#!/story/$1',
},
{