class Fastlane::Actions::GitPullAction

def self.run(params)

def self.run(params)
  command = [
    'git',
    'pull',
    '--tags'
  ]
  Actions.sh(command.join(' '))
  Helper.log.info 'Sucesfully pulled from remote.'
end