awesome-selfhosted/Dangerfile

34 lines
983 B
Plaintext
Raw Normal View History

2016-12-04 09:57:56 -06:00
#Check for changes to README.md
2016-12-04 10:05:37 -06:00
has_readme_changes = git.modified_files.include?("README.md")
2016-10-25 14:24:45 -07: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 09:28:11 -06: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 14:24:45 -07: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 09:57:56 -06:00
if has_readme_changes
2016-12-04 09:45:28 -06:00
require 'json'
2016-12-04 11:08:45 -06:00
results = File.read 'ab-results-temp.md-markdown-table.json'
2016-12-04 09:45:28 -06:00
j = JSON.parse results
if j['error']==true
2016-10-25 16:52:07 -07:00
fail j['title']
markdown j['message']
2016-12-04 09:45:28 -06:00
end
2016-12-04 09:34:56 -06:00
end
2016-10-25 16:52:07 -07:00
2016-12-04 09:34:56 -06:00
# Check syntax
2016-12-04 09:57:56 -06:00
if has_readme_changes
2016-12-04 09:45:28 -06:00
require 'json'
results = File.read 'syntaxcheck.json'
j = JSON.parse results
if j['error']==true
2016-10-25 14:24:45 -07:00
fail j['title']
markdown j['message']
2016-12-04 09:45:28 -06:00
end
end