From c2bde188aab96336bbcb8e296614f135ed276679 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Sun, 18 Aug 2024 09:49:20 +1200 Subject: [PATCH] chore: Removed woodpecker config --- .ansible-lint | 2 +- .github/workflows/CI.yml | 6 +++--- .woodpecker.yml | 19 ------------------- 3 files changed, 4 insertions(+), 23 deletions(-) delete mode 100644 .woodpecker.yml diff --git a/.ansible-lint b/.ansible-lint index f31a063..0402f2f 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -1,4 +1,4 @@ -profile: basic +profile: min skip_list: # or 'skip_list' to silence them completely - experimental # all rules tagged as experimental diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d21c216..2366e10 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,7 +18,7 @@ jobs: - name: Ensure requirements are installed run: pip install -r requirements.txt - name: Lint with ansible-lint - run: ansible-lint -c ".ansible-lint" + run: ansible-lint --exclude ./tests -c ".ansible-lint" env: PY_COLORS: '1' ANSIBLE_FORCE_COLOR: '1' @@ -93,7 +93,7 @@ jobs: if: success() with: url: '${{ vars.NTFY_URL }}' - title: Workflow success - ansible-role-common + title: Workflow success - ansible-role-repo-epel topic: 'ci-status' priority: 4 tags: +1,partying_face,action,successfully,completed @@ -106,7 +106,7 @@ jobs: if: failure() with: url: '${{ vars.NTFY_URL }}' - title: Workflow failed - ansible-role-common + title: Workflow failed - ansible-role-repo-epel topic: 'ci-status' priority: 5 tags: -1,skull,action,failed diff --git a/.woodpecker.yml b/.woodpecker.yml deleted file mode 100644 index e27fde1..0000000 --- a/.woodpecker.yml +++ /dev/null @@ -1,19 +0,0 @@ -matrix: - MOLECULE_DISTRO: - - centos7 - - almalinux8 - -steps: - build: - image: guisea/ansible-molecule - pull: true - environment: - ANSIBLE_CALLBACK_WHITELIST: profile_tasks - EPEL_MIRROR_URL: https://mirrors.guise.net.nz/epel - volumes: - - /var/run/docker.sock:/var/run/docker.sock - commands: - - molecule --version - - ansible --version - - molecule test --all -