danger

Runs danger for the project

Stop Saying your Forgot in Source Control
More information: https://github.com/danger/danger.

danger
Supported platforms mac, linux, windows
Author @KrauseFx, @johnknapprs

2 Examples

danger
danger(
  danger_id: "unit-tests",
  dangerfile: "tests/MyOtherDangerFile",
  github_api_token: ENV["GITHUB_API_TOKEN"],
  verbose: true
)

Parameters

Key Description Default
use_bundle_exec Use bundle exec when there is a Gemfile presented true
verbose Show more debugging information false
danger_id The identifier of this Danger instance
dangerfile The location of your Dangerfile Dangerfile
github_api_token GitHub API token for danger
fail_on_errors Should always fail the build process, defaults to false false
new_comment Makes Danger post a new comment instead of editing its previous one false
remove_previous_comments Makes Danger remove all previous comment and create a new one in the end of the list false
base A branch/tag/commit to use as the base of the diff. [master|dev|stable]
head A branch/tag/commit to use as the head. [master|dev|stable]
pr Run danger on a specific pull request. e.g. \"https://github.com/danger/danger/pull/518\"

* = default value is dependent on the user's system


Documentation

To show the documentation in your terminal, run

pantograph action danger

CLI

It is recommended to add the above action into your Pantfile, however sometimes you might want to run one-offs. To do so, you can run the following command from your terminal

pantograph run danger

To pass parameters, make use of the : symbol, for example

pantograph run danger parameter1:"value1" parameter2:"value2"

It's important to note that the CLI supports primitive types like integers, floats, booleans, and strings. Arrays can be passed as a comma delimited string (e.g. param:"1,2,3"). Hashes are not currently supported.

It is recommended to add all pantograph actions you use to your Pantfile.


Source code

This action, just like the rest of pantograph, is fully open source, view the source code on GitHub


Back to actions