Dangerfile 1.3 KB

123456789101112131415161718192021222324252627282930
  1. # Ensure there is a summary for a pull request
  2. fail 'Please provide a summary in the Pull Request description' if github.pr_body.length < 5
  3. # Warn about develop branch
  4. warn("Please target PRs to `develop` branch") if github.branch_for_base != "develop"
  5. # Sometimes it's a README fix, or something like that - which isn't relevant for
  6. # including in a project's CHANGELOG for example
  7. declared_trivial = github.pr_title.include? "#trivial"
  8. # Make it more obvious that a PR is a work in progress and shouldn't be merged yet
  9. warn("PR is classed as Work in Progress") if github.pr_title.include? "[WIP]"
  10. # Warn no CHANGELOG
  11. warn("No CHANGELOG changes made") if git.lines_of_code > 50 && !git.modified_files.include?("CHANGELOG.md") && !declared_trivial
  12. # Warn when there is a big PR
  13. warn("Big PR") if git.lines_of_code > 500
  14. ## Let's check if there are any changes in the project folder
  15. has_app_changes = !git.modified_files.grep(/SwiftyStoreKit/).empty?
  16. ## Then, we should check if tests are updated
  17. has_test_changes = !git.modified_files.grep(/SwiftyStoreKitTests/).empty?
  18. ## Finally, let's combine them and put extra condition
  19. ## for changed number of lines of code
  20. if has_app_changes && !has_test_changes && git.lines_of_code > 20
  21. fail("Tests were not updated", sticky: false)
  22. end