Merge "make gerrit commentlink case insensitive for bug and story"

This commit is contained in:
Jenkins 2015-01-29 14:00:31 +00:00 committed by Gerrit Code Review
commit ecae7c7b4d

View File

@ -145,12 +145,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',
},
{