adds role to check local and remote heads

This commit is contained in:
James Hackett 2022-12-19 20:45:08 +00:00
parent 47f000e641
commit 77570effb5

View file

@ -0,0 +1,13 @@
---
- name: Get local HEAD id
local_action: command git rev-parse HEAD
register: local_head
- name: Get remote HEAD id
local_action: command git ls-remote origin HEAD
register: remote_head
- name: Compare local and remote
fail:
msg: "Local repository is not up to date. Please pull latest changes from remote or push your local changes."
when: (local_head.stdout != (remote_head.stdout | split('\t') | first)) and ansible_check_mode == false