From 0a348e664b470a9c7bc8594e9c47daa20478b88e Mon Sep 17 00:00:00 2001 From: gardar Date: Mon, 1 Jul 2024 15:32:16 +0000 Subject: [PATCH] fix: ansible-community/eol-ansible for 2.9/2.10/2.11 tests Signed-off-by: gardar --- .github/workflows/ansible-test-integration.yml | 2 ++ .github/workflows/ansible-test-sanity.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ansible-test-integration.yml b/.github/workflows/ansible-test-integration.yml index 90ab83954..4bbc262ec 100644 --- a/.github/workflows/ansible-test-integration.yml +++ b/.github/workflows/ansible-test-integration.yml @@ -41,5 +41,7 @@ jobs: testing-type: integration target: ${{ matrix.targets.test }} coverage: ${{ inputs.coverage }} + ansible-core-github-repository-slug: ${{ contains(fromJson('["stable-2.9", "stable-2.10", "stable-2.11"]'), matrix.ansible-core-versions) && + 'ansible-community/eol-ansible' || 'ansible/ansible' }} env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/ansible-test-sanity.yml b/.github/workflows/ansible-test-sanity.yml index dd04a3cb6..8aef40470 100644 --- a/.github/workflows/ansible-test-sanity.yml +++ b/.github/workflows/ansible-test-sanity.yml @@ -23,3 +23,5 @@ jobs: with: ansible-core-version: ${{ matrix.ansible-core-versions }} testing-type: sanity + ansible-core-github-repository-slug: ${{ contains(fromJson('["stable-2.9", "stable-2.10", "stable-2.11"]'), matrix.ansible-core-versions) && + 'ansible-community/eol-ansible' || 'ansible/ansible' }}