Skip to content

Commit

Permalink
skip APPSEC_MISSING_RULES for ruby (APPSEC-54708)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeauchesne committed Sep 2, 2024
1 parent d781ec2 commit 8087741
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/run-end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 8087741

Please sign in to comment.