Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Improved GitHub Actions workflow triggers #32

Improved GitHub Actions workflow triggers

Improved GitHub Actions workflow triggers #32

Workflow file for this run

---
name: ansible-lint
on:
push: # All branches and tags
schedule:
# Runs automatically on the 27th of every month at 04:30 UTC
- cron: "30 04 27 * *"
jobs:
ansible-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run ansible-lint
uses: ansible/ansible-lint-action@v6