From 84c52953454c3c6fcc2ebd6edc35790c7415edcb Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 27 Jun 2026 18:24:56 +0200 Subject: [PATCH] Simplify `publish-report` action by removing unnecessary variable assignment in JUnit file processing. --- .github/actions/publish-report/action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/actions/publish-report/action.yml b/.github/actions/publish-report/action.yml index 9b79a43..659f025 100644 --- a/.github/actions/publish-report/action.yml +++ b/.github/actions/publish-report/action.yml @@ -16,7 +16,6 @@ runs: for f in **/target/*-reports/TEST-*.xml; do base="$(basename "$f")" short="${base#TEST-}" - short="${short%.xml}" cp "$f" "junit-short/${short}" done