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 }}