diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..1e22179 --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,14 @@ +--- +# .ansible-lint + +# Exclude these files from the linter +exclude_paths: + - .git* + - plugins/ + +# Rules that we feel should not be errors but warnings +warn_list: + - yaml[line-length] + - var-naming[no-role-prefix] + - meta-runtime[unsupported-version] + - run-once[task] diff --git a/.github/workflows/updateChangelog.yml b/.github/workflows/updateChangelog.yml index 3ad3425..2a7de01 100644 --- a/.github/workflows/updateChangelog.yml +++ b/.github/workflows/updateChangelog.yml @@ -16,7 +16,7 @@ jobs: - name: setup python uses: actions/setup-python@v5 with: - python-version: 3.8 #install the python needed + python-version: 3.8 # install the python needed - name: Install dependencies run: | if [ -f requirements.txt ]; then pip install -r requirements.txt; fi