Loading .ansible-lint 0 → 100644 +3 −0 Original line number Diff line number Diff line --- warn_list: - yaml[line-length] .github/dependabot.yml 0 → 100644 +19 −0 Original line number Diff line number Diff line # To get started with Dependabot version updates, you'll need to specify which # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: "pip" directory: "/.requirements" schedule: interval: "daily" labels: - "dependencies" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" labels: - "dependencies" .github/workflows/lint.yaml 0 → 100644 +47 −0 Original line number Diff line number Diff line --- name: Lint "on": pull_request: branches: - main schedule: # Run on the 10th of each month at noon. - cron: "00 12 10 * *" workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: test: name: lint runs-on: ubuntu-latest strategy: max-parallel: 2 matrix: ansible: ["2.16", "latest"] steps: - name: Check out the codebase uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: "3.10" cache: "pip" cache-dependency-path: .requirements/${{ matrix.ansible }}.txt - name: Install/upgrade pip, wheel run: pip install --upgrade pip wheel - name: Install test dependencies run: pip install -r .requirements/${{ matrix.ansible }}.txt - name: Run ansible-lint run: ansible-lint .github/workflows/rebase-on-push-to-main-branch.yaml 0 → 100644 +17 −0 Original line number Diff line number Diff line --- name: Rebase on push to main branch "on": push: branches: [main] jobs: rebase: name: Rebase on push to main branch runs-on: ubuntu-latest steps: - name: Rebase all pull requests on push to the main branch uses: peter-evans/rebase@v3 with: base: main exclude-drafts: true exclude-labels: | dependencies .gitignore 0 → 100644 +1 −0 Original line number Diff line number Diff line .update/ Loading
.ansible-lint 0 → 100644 +3 −0 Original line number Diff line number Diff line --- warn_list: - yaml[line-length]
.github/dependabot.yml 0 → 100644 +19 −0 Original line number Diff line number Diff line # To get started with Dependabot version updates, you'll need to specify which # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: "pip" directory: "/.requirements" schedule: interval: "daily" labels: - "dependencies" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" labels: - "dependencies"
.github/workflows/lint.yaml 0 → 100644 +47 −0 Original line number Diff line number Diff line --- name: Lint "on": pull_request: branches: - main schedule: # Run on the 10th of each month at noon. - cron: "00 12 10 * *" workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: test: name: lint runs-on: ubuntu-latest strategy: max-parallel: 2 matrix: ansible: ["2.16", "latest"] steps: - name: Check out the codebase uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: "3.10" cache: "pip" cache-dependency-path: .requirements/${{ matrix.ansible }}.txt - name: Install/upgrade pip, wheel run: pip install --upgrade pip wheel - name: Install test dependencies run: pip install -r .requirements/${{ matrix.ansible }}.txt - name: Run ansible-lint run: ansible-lint
.github/workflows/rebase-on-push-to-main-branch.yaml 0 → 100644 +17 −0 Original line number Diff line number Diff line --- name: Rebase on push to main branch "on": push: branches: [main] jobs: rebase: name: Rebase on push to main branch runs-on: ubuntu-latest steps: - name: Rebase all pull requests on push to the main branch uses: peter-evans/rebase@v3 with: base: main exclude-drafts: true exclude-labels: | dependencies