doc.fetch: read GITHUB_TOKEN also from ENV

pull/1178/head
Simon Legner 5 years ago
parent 40df521a7c
commit c25fbb4b3c

@ -220,6 +220,8 @@ module Docs
if opts.key?(:github_token) and url.start_with?('https://api.github.com/')
headers['Authorization'] = "token #{opts[:github_token]}"
elsif ENV['GITHUB_TOKEN'] and url.start_with?('https://api.github.com/')
headers['Authorization'] = "token #{ENV['GITHUB_TOKEN']}"
end
opts[:logger].debug("Fetching #{url}")

Loading…
Cancel
Save