aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2017-10-24 13:28:09 +0100
committerGitHub2017-10-24 13:28:09 +0100
commitcd61430bad2581ad7c92c4037b0c5deab84b3693 (patch)
tree5a06d9ec92d0a96872ab7eea79b1082da3078a19 /Library
parent7f46dcfa35a23af4a8ef812f2eb2c2fa2a2e13d5 (diff)
parent1937625d861ef1ef7bc0796477fdb81e7dbb9cf4 (diff)
downloadbrew-cd61430bad2581ad7c92c4037b0c5deab84b3693.tar.bz2
Merge pull request #3360 from ilovezfs/github-formula-name-in-issue-title
github: require formula name to be in issue title
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/utils/github.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils/github.rb b/Library/Homebrew/utils/github.rb
index f88d52403..e73951c8d 100644
--- a/Library/Homebrew/utils/github.rb
+++ b/Library/Homebrew/utils/github.rb
@@ -235,7 +235,7 @@ module GitHub
def issues_for_formula(name, options = {})
tap = options[:tap] || CoreTap.instance
- search_issues(name, state: "open", repo: "#{tap.user}/homebrew-#{tap.repo}")
+ search_issues(name, state: "open", repo: "#{tap.user}/homebrew-#{tap.repo}", in: "title")
end
def print_pull_requests_matching(query)