Sha256: 7d6ea07b988c72f3dd8fdb23d8733946ec00288ce9a3b8415f41c7de08fd074f
Contents?: true
Size: 1.66 KB
Versions: 96
Compression:
Stored size: 1.66 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.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
96 entries across 96 versions & 1 rubygems