From 58e88799656f7a11e6bdfd8a6441ab53216a1090 Mon Sep 17 00:00:00 2001 From: lodewiges <131907615+lodewiges@users.noreply.github.com> Date: Sat, 12 Oct 2024 19:58:00 +0200 Subject: [PATCH] Added exception for feat/codecov into continuous-delivery.yml --- .github/workflows/continuous-delivery.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index edb13c69c..faf430a5c 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Validate branch run: | - if [ "$GITHUB_REF_NAME" != 'staging' ] && [ "$GITHUB_REF_NAME" != 'master' ]; then + if [ "$GITHUB_REF_NAME" != 'feat/codecov' ] && [ "$GITHUB_REF_NAME" != 'staging' ] && [ "$GITHUB_REF_NAME" != 'master' ]; then echo 'This workflow can only be run on branches staging and master.' exit 1 fi