Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ansible/roles/drupal
  • max/drupal
  • ericzillmann/drupal
3 results
Show changes
Commits on Source (1)
---
# file: roles/drupal/tasks/config_collect/finish/git.yml
- name: Set facts
set_fact:
dummy: yes
- block:
- name: Push changes
shell: git push
args:
chdir: '{{ webRoot }}'
become: no
when: git_status.stdout != ''
- name: Delete webroot working copy
file:
path: '{{ webRoot }}'
state: absent
tags:
- deploy
---
# file: roles/drupal/tasks/config_collect/prepare/git.yml
- name: Set facts
set_fact:
dummy: yes
- block:
- name: Clone Git Repository
git:
accept_hostkey: yes
repo: '{{ drupal.src.git.repository }}'
dest: '{{ webRoot }}'
force: yes
version: '{{ drupal.src.git.branch|default(omit) }}'
become: no
- name: Create Git Hook for commit message
copy:
content: |
#!/bin/sh
echo "[ci skip]" >>$1
dest: '{{ webRoot }}/.git/hooks/prepare-commit-msg'
mode: 0777
tags:
- deploy
......@@ -3,22 +3,7 @@
- block:
- name: Clone Git Repository
git:
accept_hostkey: yes
repo: '{{ drupal.src.git.repository }}'
dest: '{{ webRoot }}'
force: yes
version: '{{ drupal.src.git.branch|default(omit) }}'
become: no
- name: Create Git Hook for commit message
copy:
content: |
#!/bin/sh
echo "[ci skip]" >>$1
dest: '{{ webRoot }}/.git/hooks/prepare-commit-msg'
mode: 0777
- include_tasks: git.yml
- name: Start Hotfix
shell: git {{ item }}
......