Sha256: 82af9411577c82e852bfcdf00c1545c997f0c011ccb63de1d55d4f3db2bbebf7
Contents?: true
Size: 922 Bytes
Versions: 18
Compression:
Stored size: 922 Bytes
Contents
module Danger # ### CI Setup # # Buddybuild has an integration for Danger already built-in. # What you need to do is to upload your `Gemfile` and `Dangerfile` to # the server and you should be all set-up. However, if you want to use # different bot for Danger, you can do it with token setup described below. # # ### Token Setup # # Login to buddybuild and select your app. Go to your *App Settings* and # in the *Build Settings* menu on the left, choose *Environment Variables*. # # #### GitHub # Add the `DANGER_GITHUB_API_TOKEN` to your build user's ENV. # # #### GitLab # Add the `DANGER_GITLAB_API_TOKEN` to your build user's ENV. class Buddybuild < CI def self.validates_as_ci?(_) false end def self.validates_as_pr?(_) false end def initialize(_) end def supported_request_sources @supported_request_sources ||= [] end end end
Version data entries
18 entries across 18 versions & 1 rubygems