From 29f1abd2d5d1c73ddf32540af835b7d87ed3ccb2 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 24 Nov 2021 18:43:58 +0100 Subject: [PATCH] CI: Fix full suite on core file changes (#60299) --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4a35f7b8e35..02fa6fabd11 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -98,10 +98,12 @@ jobs: test_full_suite="false" fi - # We need to run the full suite on certain branches + # We need to run the full suite on certain branches. + # Or, in case core files are touched, for the full suite as well. if [[ "${{ github.ref }}" == "refs/heads/dev" ]] \ || [[ "${{ github.ref }}" == "refs/heads/master" ]] \ - || [[ "${{ github.ref }}" == "refs/heads/rc" ]]; + || [[ "${{ github.ref }}" == "refs/heads/rc" ]] \ + || [[ "${{ steps.core.outputs.any }}" == "true" ]]; then test_full_suite="true" fi