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