From 8087741aec3fe36c49bf7025b23c8e84d8fd1593 Mon Sep 17 00:00:00 2001 From: Charles de Beauchesne Date: Mon, 2 Sep 2024 10:01:16 +0200 Subject: [PATCH] skip APPSEC_MISSING_RULES for ruby (APPSEC-54708) --- .github/workflows/run-end-to-end.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-end-to-end.yml b/.github/workflows/run-end-to-end.yml index a20d5d7a08..1655be5546 100644 --- a/.github/workflows/run-end-to-end.yml +++ b/.github/workflows/run-end-to-end.yml @@ -177,7 +177,8 @@ jobs: DD_API_KEY: ${{ secrets.DD_API_KEY }} - name: Run APPSEC_MISSING_RULES scenario # C++ 1.2.0 freeze when the rules file is missing - if: always() && steps.build.outcome == 'success' && contains(inputs.scenarios, '"APPSEC_MISSING_RULES"') && inputs.library != 'cpp' + # ruby freeze when the rules file is missing (APPSEC-54708) + if: always() && steps.build.outcome == 'success' && contains(inputs.scenarios, '"APPSEC_MISSING_RULES"') && inputs.library != 'cpp' && inputs.library != 'ruby' run: ./run.sh APPSEC_MISSING_RULES env: DD_API_KEY: ${{ secrets.DD_API_KEY }}