mirror of
https://github.com/RWejlgaard/pez-infra.git
synced 2026-07-04 15:46:16 +00:00
Bumps the github-actions group with 2 updates in the / directory: [ansible/ansible-lint](https://github.com/ansible/ansible-lint) and [actions/github-script](https://github.com/actions/github-script). Updates `ansible/ansible-lint` from 25 to 26 - [Release notes](https://github.com/ansible/ansible-lint/releases) - [Commits](https://github.com/ansible/ansible-lint/compare/v25...v26) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: ansible/ansible-lint dependency-version: '26' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
685 B
YAML
27 lines
685 B
YAML
name: Lint Ansible
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
ansible-lint:
|
|
name: ansible-lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Check for Ansible files
|
|
id: check
|
|
run: |
|
|
if find ansible/ -name '*.yml' -o -name '*.yaml' | grep -q .; then
|
|
echo "has_files=true" >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo "has_files=false" >> "$GITHUB_OUTPUT"
|
|
echo "No Ansible YAML files found — skipping lint."
|
|
fi
|
|
|
|
- name: Run ansible-lint
|
|
if: steps.check.outputs.has_files == 'true'
|
|
uses: ansible/ansible-lint@v26
|
|
with:
|
|
working_directory: ansible/
|