mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-01-12 17:33:05 +08:00
Merge branch 'master' of https://github.com/probot/probot.github.io into hiimbex-patch-2
This commit is contained in:
@@ -3,6 +3,10 @@ script: "./script/cibuild"
|
||||
language: ruby
|
||||
rvm:
|
||||
- 2.4.0
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- libcurl4-openssl-dev
|
||||
notifications:
|
||||
email: false
|
||||
env:
|
||||
|
||||
@@ -13,7 +13,6 @@ host: https://github-configurer.herokuapp.com
|
||||
installations: 131
|
||||
organizations:
|
||||
- apollographql
|
||||
- CNXTEoEorg
|
||||
- denysdovhan
|
||||
- bkeepers
|
||||
- chaijs
|
||||
|
||||
Submodule _submodules/probot updated: 05e063f02a...450b42c090
@@ -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">
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user