first commit

This commit is contained in:
Annika Merris 2025-04-30 11:51:18 +00:00
commit 5816898404
50 changed files with 1031 additions and 0 deletions

3
.github/ansible-code-bot.yml vendored Normal file
View file

@ -0,0 +1,3 @@
---
schedule:
interval: "daily"

18
.github/workflows/tests.yml vendored Normal file
View file

@ -0,0 +1,18 @@
---
name: "CI"
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
pull_request:
branches: [main]
workflow_dispatch:
# TO-DO: Below is an example cron scheduler. Uncomment and tweak it as per your requirement
# schedule:
# - cron: '0 0 * * *'
jobs:
ansible-lint:
uses: ansible/ansible-content-actions/.github/workflows/ansible_lint.yaml@main