Initial commit

This commit is contained in:
2022-05-07 18:07:35 +01:00
commit 8dc31ad258
15 changed files with 609 additions and 0 deletions

1
.github/CODEOWNERS vendored Normal file
View File

@@ -0,0 +1 @@
* @nikdoof

18
.github/renovate.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"extends": [
":enableRenovate",
"config:base",
":enablePreCommit",
":disableRateLimiting"
],
"timezone": "UTC",
"dependencyDashboard": true,
"dependencyDashboardAutoclose": false,
"prCreation": "not-pending",
"suppressNotifications": [
"prIgnoreNotification"
],
"assigneesFromCodeOwners": true,
"rebaseWhen": "conflicted",
"stabilityDays": 3
}

17
.github/workflows/lint-pulls.yaml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Lint Pull Requests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint Ansible Playbook
uses: ansible/ansible-lint-action@main
with:
override-deps : |
ansible-lint==5.3.2
targets: |
main.yaml
args: "-p --parseable-severity"