From a815c0592dd223839e630ce9baffdced5afcebec Mon Sep 17 00:00:00 2001 From: Charles de Beauchesne Date: Thu, 2 Apr 2026 10:07:53 +0200 Subject: [PATCH] remove xslt transformation --- .../push_to_test_optimization/action.yml | 11 ---- .../add_final_status.xsl | 50 ------------------- 2 files changed, 61 deletions(-) delete mode 100644 .github/actions/push_to_test_optimization/add_final_status.xsl diff --git a/.github/actions/push_to_test_optimization/action.yml b/.github/actions/push_to_test_optimization/action.yml index aa0193963f7..d369827f1e3 100644 --- a/.github/actions/push_to_test_optimization/action.yml +++ b/.github/actions/push_to_test_optimization/action.yml @@ -7,17 +7,6 @@ inputs: runs: using: composite steps: - - name: Adds - shell: bash - run: | - which xsltproc || sudo apt-get install -y xsltproc - find . -name '*.xml' | while read -r xml_file; do - echo "Fixing $xml_file" - tmp_file="$(mktemp)" - xsltproc --output "$tmp_file" ".github/actions/push_to_test_optimization/add_final_status.xsl" "$xml_file" - mv "$tmp_file" "$xml_file" - done - - if: github.actor != 'dependabot[bot]' # see https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#pull-request-events-for-forked-repositories # diff --git a/.github/actions/push_to_test_optimization/add_final_status.xsl b/.github/actions/push_to_test_optimization/add_final_status.xsl deleted file mode 100644 index ea2958a85ae..00000000000 --- a/.github/actions/push_to_test_optimization/add_final_status.xsl +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - fail - skip - pass - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -