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)
2626 forward_merges = [ ]
2727 message . each_line do |line |
2828 $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 )
3030 if match then
3131 issue = match [ 1 ]
3232 milestone = match [ 2 ]
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def get_fixed_issues()
1818 message = `git log -1 --pretty=%B #{ rev } `
1919 message . each_line do |line |
2020 $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 )
2222 end
2323 $log. debug "Found fixed issues #{ fixed } "
2424 return fixed ;
You can’t perform that action at this time.
0 commit comments