forked from sap-linuxlab/community.sap_operations
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (19 loc) · 761 Bytes
/
Copy pathansible-lint.yml
File metadata and controls
24 lines (19 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
name: Ansible Lint - Collection
on:
schedule:
# Wednesday at 03:17 UTC (~4:17 AM CET / 5:17 AM CEST). Actual start time depends on GitHub load.
- cron: '17 3 * * 3'
workflow_dispatch:
jobs:
ansible-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
# Use @vXX to automatically track the latest release from the year 20XX. Example: @v26 for 2026.
# ansible-lint uses Calendar Versioning (e.g., v26.0.0 -> YYYY.MM.PATCH).
# Avoid using @main, which can introduce breaking changes unexpectedly.
- uses: ansible/ansible-lint@v26
with:
# Use the shared requirements file from the collection root for dependency context.
requirements_file: ./requirements.yml