moduleFastlanemoduleActionsclassGitCommitAllAction<Actiondefself.run(params)Actions.sh"git commit -am \"#{params[:message]}\""end###################################################### @!group Documentation#####################################################defself.description"Commit all unsaved changes to git."enddefself.available_options[FastlaneCore::ConfigItem.new(key: :message,env_name: "FL_GIT_COMMIT_ALL",description: "The git message for the commit",is_string: true)]enddefself.authors# So no one will ever forget your contribution to fastlane :) You are awesome btw!["thierry"]enddefself.is_supported?(platform)trueendendendend