adds role to check local and remote heads
This commit is contained in:
parent
47f000e641
commit
77570effb5
1 changed files with 13 additions and 0 deletions
13
ansible/roles/git-compare-head/tasks/main.yml
Normal file
13
ansible/roles/git-compare-head/tasks/main.yml
Normal 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
|
Loading…
Reference in a new issue