diff --git a/playbooks/release/pre.yaml b/playbooks/release/pre.yaml index 27aa016a53..384089ad47 100644 --- a/playbooks/release/pre.yaml +++ b/playbooks/release/pre.yaml @@ -6,6 +6,9 @@ args: chdir: "{{ ansible_user_dir }}/src/{{ item.canonical_name }}" with_items: "{{ zuul._projects.values() | list }}" + # ANSIBLE0006: git remote add is not supported by ansible module + tags: + - skip_ansible_lint roles: - role: configure-git git_config: diff --git a/roles/use-cached-repos/tasks/main.yaml b/roles/use-cached-repos/tasks/main.yaml index 5825d0bdd8..40440e6dd6 100644 --- a/roles/use-cached-repos/tasks/main.yaml +++ b/roles/use-cached-repos/tasks/main.yaml @@ -12,6 +12,10 @@ with_together: - "{{ zuul._projects.values() | list }}" - "{{ cached_repos.results }}" + # ANSIBLE0006: If we use the git module, we get warning + # ANSIBLE0004 since we do not give an explicit version + tags: + - skip_ansible_lint - name: Clone upstream repo to workspace command: "git clone https://{{ item.0.canonical_hostname }}/{{ item.0.name}} {{ ansible_user_dir }}/{{ item.0.src_dir}}" @@ -21,9 +25,16 @@ with_together: - "{{ zuul._projects.values() | list }}" - "{{ cached_repos.results }}" + # ANSIBLE0006: If we use the git module, we get warning + # ANSIBLE0004 since we do not give an explicit version + tags: + - skip_ansible_lint - name: Remove origin from local git repos command: "git remote rm origin" args: chdir: "{{ ansible_user_dir }}/{{ item.src_dir}}" with_items: "{{ zuul._projects.values() | list }}" + # ANSIBLE0006: git remote is not supported by ansible module + tags: + - skip_ansible_lint