diff options
| author | Mike McQuaid | 2017-10-24 13:28:09 +0100 |
|---|---|---|
| committer | GitHub | 2017-10-24 13:28:09 +0100 |
| commit | cd61430bad2581ad7c92c4037b0c5deab84b3693 (patch) | |
| tree | 5a06d9ec92d0a96872ab7eea79b1082da3078a19 /Library/Homebrew/utils/github.rb | |
| parent | 7f46dcfa35a23af4a8ef812f2eb2c2fa2a2e13d5 (diff) | |
| parent | 1937625d861ef1ef7bc0796477fdb81e7dbb9cf4 (diff) | |
| download | brew-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/Homebrew/utils/github.rb')
| -rw-r--r-- | Library/Homebrew/utils/github.rb | 2 |
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) |
