diff --git a/.ansible/.lock b/.ansible/.lock deleted file mode 100644 index e69de29..0000000 diff --git a/.gitea/workflows/yamllint_and_pass_check.yml b/.gitea/workflows/yamllint_and_pass_check.yml deleted file mode 100644 index 81eb41c..0000000 --- a/.gitea/workflows/yamllint_and_pass_check.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: YAML Lint - -on: [push] - -jobs: - yamllint: - runs-on: ubuntu-yamllint - steps: - - name: Checkout linting - uses: actions/checkout@v4 - - - name: Run yamllint with auto-detected config - run: | - yamllint -c .yamllint . - gitleaks: - runs-on: ubuntu-yamllint - steps: - - name: Checkout passwords leaks - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Run gitleaks - run: gitleaks detect --source . --verbose -... diff --git a/.gitleaks.toml b/.gitleaks.toml deleted file mode 100644 index 2268f80..0000000 --- a/.gitleaks.toml +++ /dev/null @@ -1,7 +0,0 @@ -[extend] -useDefault = true - -[allowlist] -paths = [ -# '''roles/logs_settings_on_ptaf/templates/filebeat.yml.j2''', -] \ No newline at end of file diff --git a/.yamllint b/.yamllint deleted file mode 100644 index e68c28f..0000000 --- a/.yamllint +++ /dev/null @@ -1,11 +0,0 @@ ---- -extends: default - -ignore: | - roles/filebeat_install/files/fields.yml - .gitea/workflows/yamllint.yml - -rules: - line-length: - max: 180 -...