Skip to content

fix: Use of correct template in repository role #58

fix: Use of correct template in repository role

fix: Use of correct template in repository role #58

Workflow file for this run

---
name: Ansible Lint
on: # yamllint disable-line rule:truthy
merge_group:
branches:
- main
types:
- checks_requested
pull_request:
push:
branches:
- main
workflow_dispatch:
env:
LSR_ROLE2COLL_NAMESPACE: performancecopilot
LSR_ROLE2COLL_NAME: metrics
TOX_WORK_DIR: .tox
permissions:
contents: read
jobs:
ansible_lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Convert role to collection format
run: |
set -euxo pipefail
coll_dir="$TOX_WORK_DIR/ansible_collections/${{ env.LSR_ROLE2COLL_NAMESPACE }}/${{ env.LSR_ROLE2COLL_NAME }}"
bash scripts/lsrcollection.sh
# ansible-lint action requires a .git directory???
# https://github.com/ansible/ansible-lint/blob/main/action.yml#L45
mkdir -p "$coll_dir/.git"
- name: Run ansible-lint
uses: ansible/ansible-lint@v6
with:
working_directory: ${{ env.TOX_WORK_DIR }}/ansible_collections/${{ env.LSR_ROLE2COLL_NAMESPACE }}/${{ env.LSR_ROLE2COLL_NAME }}