class Danger::Codefresh

### CI Setup

To set up Danger on Codefresh, create a freestyle step in your Codefresh yaml configuration:

“‘yml Danger:

title: Run Danger
image: alpine/bundle
working_directory: ${{main_clone}}
commands:
  - bundle install --deployment
  - bundle exec danger --verbose

“‘

Don’t forget to add the ‘DANGER_GITHUB_API_TOKEN` variable to your pipeline settings so that Danger can properly post comments to your pull request.