Merge branch 'master' of https://github.com/probot/probot.github.io into hiimbex-patch-2

This commit is contained in:
Bex Warner
2018-04-14 13:36:50 -04:00
6 changed files with 18 additions and 5 deletions

View File

@@ -3,6 +3,10 @@ script: "./script/cibuild"
language: ruby
rvm:
- 2.4.0
addons:
apt:
packages:
- libcurl4-openssl-dev
notifications:
email: false
env:

View File

@@ -13,7 +13,6 @@ host: https://github-configurer.herokuapp.com
installations: 131
organizations:
- apollographql
- CNXTEoEorg
- denysdovhan
- bkeepers
- chaijs

View File

@@ -21,9 +21,13 @@ redirect_from:
Contribute on GitHub
</a>
<a class="btn btn-outline d-inline-block mb-1 mb-md-0" href="https://twitter.com/ProbotTheRobot">
<a class="btn btn-outline d-inline-block mb-1 mb-md-0 mr-0 mr-md-3" href="https://twitter.com/ProbotTheRobot">
Follow on Twitter
</a>
<a class="btn btn-outline d-inline-block mb-1" href="https://stackoverflow.com/questions/tagged/probot">
Ask on Stack Overflow
</a>
</div>
<div id="office-hours" class="d-md-flex flex-row-reverse my-6">

View File

@@ -9,6 +9,7 @@ url_ignores = [
%r{https://github.com/apps/.*/installations/new},
"https://mochajs.org/",
%r{mit-license\.org}, # misconfigured SSL or old certs on Travis CI?
%r{https://localhost:*/*}, # Ignore links to localhost in documentation
]
begin
@@ -18,7 +19,12 @@ begin
:file_ignore => [%r{_site/api/}],
:verbose => !!ENV["VERBOSE"],
:check_html => true,
:empty_alt_ignore => true
:empty_alt_ignore => true,
:typhoeus => {
# Work around SSL errors: https://github.com/gjtorikian/html-proofer/issues/376
:ssl_verifypeer => false,
:ssl_verifyhost => 0
}
).run
rescue => e
puts "\n", e

View File

@@ -53,7 +53,7 @@ describe "lint test" do
end
it "host returns 200" do
uri = URI(data["host"] + '/probot/stats')
uri = URI(data["host"] + '/ping')
res = Net::HTTP.get_response(uri)
assert_equal "200", res.code, "Expected 200 response from #{uri}"
end