Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ansible/.ansible-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
offline: false
File renamed without changes.
13 changes: 4 additions & 9 deletions .github/workflows/run-ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@ jobs:
restore-keys: |
pre-commit-${{ runner.os }}-

- name: Install Ansible collections for ansible-lint
run: |
pip install ansible-core
ansible-galaxy collection install -r .github/ansible/requirements.yaml

- name: Run pre-commit
uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd

Expand Down Expand Up @@ -674,7 +669,7 @@ jobs:
EOF

- name: Install Ansible collections
run: ansible-galaxy collection install -r requirements.yaml
run: ansible-galaxy collection install -r requirements.yml
working-directory: .github/ansible

- name: Run Nest deploy
Expand Down Expand Up @@ -714,7 +709,7 @@ jobs:
EOF

- name: Install Ansible collections
run: ansible-galaxy collection install -r requirements.yaml
run: ansible-galaxy collection install -r requirements.yml
working-directory: .github/ansible

- name: Run proxy deploy
Expand Down Expand Up @@ -1052,7 +1047,7 @@ jobs:
EOF

- name: Install Ansible collections
run: ansible-galaxy collection install -r requirements.yaml
run: ansible-galaxy collection install -r requirements.yml
working-directory: .github/ansible

- name: Run Nest deploy
Expand Down Expand Up @@ -1092,7 +1087,7 @@ jobs:
EOF

- name: Install Ansible collections
run: ansible-galaxy collection install -r requirements.yaml
run: ansible-galaxy collection install -r requirements.yml
working-directory: .github/ansible

- name: Run proxy deploy
Expand Down
4 changes: 4 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ repos:
rev: v26.1.1
hooks:
- id: ansible-lint
additional_dependencies:
- ansible-core
args:
- -c
- .github/ansible/.ansible-lint.yaml
- .github/ansible
files: ^\.github/ansible/.*\.ya?ml$
language_version: python3
Expand Down