warn only on awesomebot fail

pull/892/head
nrew225 2016-12-16 19:27:29 -06:00
parent 27c69ae1fd
commit e921ece095
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ if has_readme_changes
results = File.read 'ab-results-temp.md-markdown-table.json' results = File.read 'ab-results-temp.md-markdown-table.json'
j = JSON.parse results j = JSON.parse results
if j['error']==true if j['error']==true
fail j['title'] warn j['title']
markdown j['message'] markdown j['message']
end end
end end
@ -30,7 +30,7 @@ if has_readme_changes
syntaxresults = File.read 'syntaxcheck.json' syntaxresults = File.read 'syntaxcheck.json'
sj = JSON.parse syntaxresults sj = JSON.parse syntaxresults
if sj['error']==true if sj['error']==true
warn sj['title'] fail sj['title']
markdown sj['message'] markdown sj['message']
end end
end end