Sha256: 181e9d3edf51a5c3dd81e28400492f32e87a9d36483981f6d1f9379fc4603044
Contents?: true
Size: 1.71 KB
Versions: 341
Compression:
Stored size: 1.71 KB
Contents
module Fastlane module Actions class GitCommitAction < Action def self.run(params) if params[:path].kind_of?(String) paths = params[:path].shellescape else paths = params[:path].map(&:shellescape).join(' ') end result = Actions.sh("git commit -m #{params[:message].shellescape} #{paths}") UI.success("Successfully committed \"#{params[:path]}\" 💾.") return result end ##################################################### # @!group Documentation ##################################################### def self.description "Directly commit the given file with the given message" end def self.details "" end def self.available_options [ FastlaneCore::ConfigItem.new(key: :path, description: "The file you want to commit", is_string: false), FastlaneCore::ConfigItem.new(key: :message, description: "The commit message that should be used") ] end def self.output end def self.return_value nil end def self.authors ["KrauseFx"] end def self.is_supported?(platform) true end def self.example_code [ 'git_commit(path: "./version.txt", message: "Version Bump")', 'git_commit(path: ["./version.txt", "./changelog.txt"], message: "Version Bump")', 'git_commit(path: ["./*.txt", "./*.md"], message: "Update documentation")' ] end def self.category :source_control end end end end
Version data entries
341 entries across 341 versions & 1 rubygems