File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def find_forward_merges(message_file)
26
26
forward_merges = [ ]
27
27
message . each_line do |line |
28
28
$log. debug "Checking #{ line } for message"
29
- match = /^(?:Fixes|Closes) gh-(\d +) in (\d \. \d \. [\d x](?:[\. \- ](?:M|RC)\d )?)$/ . match ( line )
29
+ match = /^(?:Fixes|Closes) gh-(\d +) in (\d \. \d \. [\d x](?:[\. \- ](?:M|RC)\d )?)$/i . match ( line )
30
30
if match then
31
31
issue = match [ 1 ]
32
32
milestone = match [ 2 ]
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def get_fixed_issues()
18
18
message = `git log -1 --pretty=%B #{ rev } `
19
19
message . each_line do |line |
20
20
$log. debug "Checking #{ line } for message"
21
- fixed << line . strip if /^(?:Fixes|Closes) gh-(\d +)/ . match ( line )
21
+ fixed << line . strip if /^(?:Fixes|Closes) gh-(\d +)/i . match ( line )
22
22
end
23
23
$log. debug "Found fixed issues #{ fixed } "
24
24
return fixed ;
You can’t perform that action at this time.
0 commit comments