2016-12-04 16:57:56 +01:00
|
|
|
#Check for changes to README.md
|
2016-12-04 17:05:37 +01:00
|
|
|
has_readme_changes = git.modified_files.include?("README.md")
|
2016-10-25 23:24:45 +02:00
|
|
|
|
|
|
|
# Ensure there is a summary for a pull request
|
|
|
|
fail 'Please provide a summary in the Pull Request description' if github.pr_body.length < 5
|
2016-12-04 20:22:59 +01:00
|
|
|
|
|
|
|
# Check if PR guidelines are checked.
|
|
|
|
fail 'Please check PR guidelines and check the boxes.' if github.pr_body.include? '- [ ]'
|
2016-12-04 16:28:11 +01:00
|
|
|
|
|
|
|
# Warn if pull request is not updated
|
|
|
|
warn 'Please update the Pull Request title to contain the script name' if github.pr_title.include? 'Update README.md'
|
2016-10-25 23:24:45 +02:00
|
|
|
|
|
|
|
# Warn when there are merge commits in the diff
|
|
|
|
warn 'Please rebase to get rid of the merge commits in this Pull Request' if git.commits.any? { |c| c.message =~ /^Merge branch 'master'/ }
|
|
|
|
|
|
|
|
# Check links
|
2016-12-04 16:57:56 +01:00
|
|
|
if has_readme_changes
|
2016-12-04 16:45:28 +01:00
|
|
|
require 'json'
|
2016-12-04 18:08:45 +01:00
|
|
|
results = File.read 'ab-results-temp.md-markdown-table.json'
|
2016-12-04 16:45:28 +01:00
|
|
|
j = JSON.parse results
|
|
|
|
if j['error']==true
|
2016-10-26 01:52:07 +02:00
|
|
|
fail j['title']
|
|
|
|
markdown j['message']
|
2016-12-04 16:45:28 +01:00
|
|
|
end
|
2016-12-04 16:34:56 +01:00
|
|
|
end
|
2016-10-26 01:52:07 +02:00
|
|
|
|
2016-12-04 16:34:56 +01:00
|
|
|
# Check syntax
|
2016-12-04 16:57:56 +01:00
|
|
|
if has_readme_changes
|
2016-12-04 16:45:28 +01:00
|
|
|
require 'json'
|
|
|
|
results = File.read 'syntaxcheck.json'
|
|
|
|
j = JSON.parse results
|
|
|
|
if j['error']==true
|
2016-10-25 23:24:45 +02:00
|
|
|
fail j['title']
|
|
|
|
markdown j['message']
|
2016-12-04 16:45:28 +01:00
|
|
|
end
|
|
|
|
end
|