Skip to content

Commit

Permalink
Ignore .github folder in ansible-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dometto committed Nov 30, 2023
1 parent 52a322f commit e89e27c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .ansible-lint
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
profile: basic
exclude_paths:
- .github
4 changes: 2 additions & 2 deletions converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
with_items: "{{ lookup('env', 'components') }}"

- name: Test the component by executing it using ansible on the workspace
ansible.builtin.command: ansible-playbook -c local -v -b {{ remote_plugin.arguments }} --extra-vars='{{ remote_plugin.parameters }}' /rsc/plugins/{{
item.name }}/{{ item.path }}
ansible.builtin.command: ansible-playbook -c local -v -b {{ remote_plugin.arguments }} --extra-vars='{{ remote_plugin.parameters }}' /rsc/plugins/{{ item.name

Check failure on line 12 in converge.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

yaml[line-length]

Line too long (164 > 160 characters)
}}/{{ item.path }}
register: ansible_on_workspace
changed_when: "'changed=0' not in ansible_on_workspace.stdout_lines[-1]"
vars:
Expand Down
1 change: 0 additions & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
# This file is just to specify requirements for running the liter on the SRC-Molecule repository.
collections:
- name: ansible.posix

0 comments on commit e89e27c

Please sign in to comment.