Skip to content

Add ansible-lint and pull-requester GitHub Workflows and Dependabot #6

Add ansible-lint and pull-requester GitHub Workflows and Dependabot

Add ansible-lint and pull-requester GitHub Workflows and Dependabot #6

Workflow file for this run

---
name: Linting
on:
pull_request:
branches:
- main
permissions:
contents: read
packages: read
issues: write
pull-requests: write
jobs:
linting:
name: Ansible Linting
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Lint the Ansible code
uses: ansible/ansible-lint@v6
- name: Upload the ansible-lint SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: results.sarif
category: ansible-lint