Sha256: d5ef0a6b002d11d7f714f560e4135c5dc71af94f105e348e64bd9aa2206cfdf6

Contents?: true

Size: 1.01 KB

Versions: 160

Compression:

Stored size: 1.01 KB

Contents

# http://github.com/surf-build/surf
require "danger/request_sources/github/github"

module Danger
  # ### CI Setup
  #
  # You want to add `bundle exec danger` to your `build.sh` file to run  Danger at the
  # end of your build.
  #
  # ### Token Setup
  #
  # As this is self-hosted, you will need to add the `DANGER_GITHUB_API_TOKEN` to your build user's ENV. The alternative
  # is to pass in the token as a prefix to the command `DANGER_GITHUB_API_TOKEN="123" bundle exec danger`.
  #
  class Surf < CI
    def self.validates_as_ci?(env)
      return ["SURF_REPO", "SURF_NWO"].all? { |x| env[x] && !env[x].empty? }
    end

    def self.validates_as_pr?(env)
      validates_as_ci?(env)
    end

    def supported_request_sources
      @supported_request_sources ||= [Danger::RequestSources::GitHub]
    end

    def initialize(env)
      self.repo_slug = env["SURF_NWO"]
      if env["SURF_PR_NUM"].to_i > 0
        self.pull_request_id = env["SURF_PR_NUM"]
      end

      self.repo_url = env["SURF_REPO"]
    end
  end
end

Version data entries

160 entries across 160 versions & 2 rubygems

Version Path
danger-9.5.1 lib/danger/ci_source/surf.rb
danger-9.5.0 lib/danger/ci_source/surf.rb
danger-9.4.3 lib/danger/ci_source/surf.rb
danger-9.4.2 lib/danger/ci_source/surf.rb
danger-9.4.1 lib/danger/ci_source/surf.rb
danger-9.4.0 lib/danger/ci_source/surf.rb
danger-9.3.2 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.36 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.35 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.34 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.33 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.32 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.31 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.30 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.29 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.28 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.27 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.26 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.25 lib/danger/ci_source/surf.rb
danger-additional-logging-0.0.24 lib/danger/ci_source/surf.rb