first commit
This commit is contained in:
commit
5816898404
50 changed files with 1031 additions and 0 deletions
3
.github/ansible-code-bot.yml
vendored
Normal file
3
.github/ansible-code-bot.yml
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
schedule:
|
||||
interval: "daily"
|
||||
18
.github/workflows/tests.yml
vendored
Normal file
18
.github/workflows/tests.yml
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue