Class: Fastlane::Actions::DangerResultAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::DangerResultAction
- Defined in:
- lib/fastlane/plugin/danger_result/actions/danger_result_action.rb
Class Method Summary collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .example_code ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .return_value ⇒ Object
- .run(params) ⇒ Object
Class Method Details
.authors ⇒ Object
73 74 75 |
# File 'lib/fastlane/plugin/danger_result/actions/danger_result_action.rb', line 73 def self. ["marumemomo"] end |
.available_options ⇒ Object
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
# File 'lib/fastlane/plugin/danger_result/actions/danger_result_action.rb', line 86 def self. [ FastlaneCore::ConfigItem.new(key: :use_bundle_exec, env_name: "FL_DANGER_USE_BUNDLE_EXEC", description: "Use bundle exec when there is a Gemfile presented", is_string: false, default_value: true), FastlaneCore::ConfigItem.new(key: :verbose, env_name: "FL_DANGER_VERBOSE", description: "Show more debugging information", is_string: false, default_value: false), FastlaneCore::ConfigItem.new(key: :danger_id, env_name: "FL_DANGER_ID", description: "The identifier of this Danger instance", is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :dangerfile, env_name: "FL_DANGER_DANGERFILE", description: "The location of your Dangerfile", is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :github_api_token, env_name: "FL_DANGER_GITHUB_API_TOKEN", description: "GitHub API token for danger", sensitive: true, is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :fail_on_errors, env_name: "FL_DANGER_FAIL_ON_ERRORS", description: "Should always fail the build process, defaults to false", is_string: false, optional: true, default_value: false), FastlaneCore::ConfigItem.new(key: :new_comment, env_name: "FL_DANGER_NEW_COMMENT", description: "Makes Danger post a new comment instead of editing its previous one", is_string: false, optional: true, default_value: false), FastlaneCore::ConfigItem.new(key: :base, env_name: "FL_DANGER_BASE", description: "A branch/tag/commit to use as the base of the diff. [master|dev|stable]", is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :head, env_name: "FL_DANGER_HEAD", description: "A branch/tag/commit to use as the head. [master|dev|stable]", is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :pr, env_name: "FL_DANGER_PR", description: "Run danger on a specific pull request. e.g. \"https://github.com/danger/danger/pull/518\"", is_string: true, optional: true) ] end |
.description ⇒ Object
69 70 71 |
# File 'lib/fastlane/plugin/danger_result/actions/danger_result_action.rb', line 69 def self.description "Get danger data plugin." end |
.details ⇒ Object
81 82 83 84 |
# File 'lib/fastlane/plugin/danger_result/actions/danger_result_action.rb', line 81 def self.details # Optional: "" end |
.example_code ⇒ Object
148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/fastlane/plugin/danger_result/actions/danger_result_action.rb', line 148 def self.example_code [ 'danger_result', 'danger_result( danger_id: "unit-tests", dangerfile: "tests/MyOtherDangerFile", github_api_token: ENV["GITHUB_API_TOKEN"], verbose: true )' ] end |
.is_supported?(platform) ⇒ Boolean
144 145 146 |
# File 'lib/fastlane/plugin/danger_result/actions/danger_result_action.rb', line 144 def self.is_supported?(platform) true end |
.return_value ⇒ Object
77 78 79 |
# File 'lib/fastlane/plugin/danger_result/actions/danger_result_action.rb', line 77 def self.return_value # If your method provides a return value, you can describe here what it does end |
.run(params) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/fastlane/plugin/danger_result/actions/danger_result_action.rb', line 7 def self.run(params) Actions.verify_gem!('danger') cmd = [] cmd << 'bundle exec' if params[:use_bundle_exec] && shell_out_should_use_bundle_exec? cmd << 'danger' cmd << '--verbose' if params[:verbose] danger_id = params[:danger_id] dangerfile = params[:dangerfile] base = params[:base] head = params[:head] pr = params[:pr] cmd << "--danger_id=#{danger_id}" if danger_id cmd << "--dangerfile=#{dangerfile}" if dangerfile cmd << "--fail-on-errors=true" if params[:fail_on_errors] cmd << "--new-comment" if params[:new_comment] cmd << "--base=#{base}" if base cmd << "--head=#{head}" if head cmd << "pr #{pr}" if pr ENV['DANGER_GITHUB_API_TOKEN'] = params[:github_api_token] if params[:github_api_token] d = Actions.sh(cmd.join(' ')) d.gsub!(/(\e\[31m|\e\[32m|\e\[33m|\e\[0m|\n)/, '') res = d.split('Results:')[1] result = { errors: [], warnings: [] } if /Errors:/ =~ res result[:errors] = res.split("Errors:")[1].split("Warnings:")[0].sub(/- \[ \] /, '').split('- [ ] ') end if /Warnings:/ =~ res result[:warnings] = res.split("Warnings:")[1].sub(/- \[ \] /, '').split('- [ ] ') end fields = [] color = 'good' text = 'LGTM :+1:' if result[:warnings].size != 0 fields.push({"title": "Warning", "value": "```\n#{result[:warnings].join("\n")}\n```", "short": false}) color = 'warning' text = '' end if result[:errors].size != 0 fields.push({"title": "Error", "value": "```\n#{result[:errors].join("\n")}\n```", "short": false}) color = 'danger' text = '' end other_action.slack( default_payloads: [], attachment_properties: { title: 'Review from Danger', color: color, text: text, fields: fields } ) end |