forked from LBRYCommunity/lbry-sdk
6 lines
309 B
Ruby
6 lines
309 B
Ruby
# Add a CHANGELOG entry for app changes
|
|
has_app_changes = !git.modified_files.grep(/lbrynet/).empty?
|
|
if !git.modified_files.include?("CHANGELOG.md") && has_app_changes
|
|
fail("Please include a CHANGELOG entry.")
|
|
message "See http://keepachangelog.com/en/0.3.0/ for details on good changelog guidelines"
|
|
end
|