5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 01:06:22 +00:00
panel/app/jobs/git_pull_job.rb

17 lines
406 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Permite traer los cambios cada vez que se
# hace un push al repositorio
class GitPullJob < ApplicationJob
# @param :site [Site]
# @return [nil]
def perform(site)
# hace un fetch para ver cambios
site.repository.fetch
# hace un merge
site.repository.merge(site.usuarie)
site.repository.git_sh("git lfs fetch")
end
end