Dangerfile 699 B

1234567891011121314151617
  1. ## Let's check if there are any changes in the project folder
  2. has_app_changes = !git.modified_files.grep(/SwiftyStoreKit/).empty?
  3. ## Then, we should check if tests are updated
  4. has_test_changes = !git.modified_files.grep(/SwiftyStoreKitTests/).empty?
  5. # Make it more obvious that a PR is a work in progress and shouldn't be merged yet
  6. warn("PR is classed as Work in Progress") if github.pr_title.include? "[WIP]"
  7. # Warn when there is a big PR
  8. warn("Big PR") if git.lines_of_code > 500
  9. ## Finally, let's combine them and put extra condition
  10. ## for changed number of lines of code
  11. if has_app_changes && !has_test_changes && git.lines_of_code > 20
  12. fail("Tests were not updated", sticky: false)
  13. end