From 9568856942da0bfe15012221b070777e51054830 Mon Sep 17 00:00:00 2001 From: "tompage1994@hotmail.co.uk" Date: Mon, 15 Apr 2024 15:35:05 +0100 Subject: [PATCH] Allow failure on devel --- .github/workflows/ci_standalone.yml | 2 +- .github/workflows/ci_standalone_versioned.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_standalone.yml b/.github/workflows/ci_standalone.yml index 420997557..a840babbb 100644 --- a/.github/workflows/ci_standalone.yml +++ b/.github/workflows/ci_standalone.yml @@ -24,7 +24,7 @@ jobs: - 23.0.0 - 22.7.0 uses: "./.github/workflows/ci_standalone_versioned.yml" - continue-on-error: ${{ matrix.awx_version == 'devel' }} with: awx_version: ${{ matrix.awx_version }} gh_ref: ${{ github.event.pull_request.head.sha || github.sha }} +... diff --git a/.github/workflows/ci_standalone_versioned.yml b/.github/workflows/ci_standalone_versioned.yml index 914fa0946..bc59f6059 100644 --- a/.github/workflows/ci_standalone_versioned.yml +++ b/.github/workflows/ci_standalone_versioned.yml @@ -20,6 +20,7 @@ env: jobs: integration: runs-on: ubuntu-latest + continue-on-error: ${{ inputs.awx_version == 'devel' }} steps: - uses: actions/checkout@v2 with: