Skip to content

Commit 215d22b

Browse files
committed
Fix summary filename to use -- separator instead of directory paths
- Replace '/' in repo name with '--' to create flat filename in .audit/ directory - Use double dash as separator for clean parsing: user--repo--branch--pr--wstest-summary.md - This avoids creating subdirectories and fixes the 'No such file or directory' error - Result: oberstet--autobahn-python--rel_v25.9.1_part4b--1680--wstest-summary.md
1 parent 1a535d5 commit 215d22b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/wstest.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,9 @@ jobs:
326326
run: |
327327
echo "==> Generating conformance summary tables..."
328328
329-
# Create unique filename for PR
330-
SUMMARY_FILE="${{ github.workspace }}/.audit/${{ github.event.pull_request.head.repo.full_name }}-${{ github.head_ref }}-${{ github.event.number }}-wstest-summary.md"
329+
# Create unique filename for PR using -- as separator
330+
REPO_SAFE=$(echo '${{ github.event.pull_request.head.repo.full_name }}' | tr '/' '--')
331+
SUMMARY_FILE="${{ github.workspace }}/.audit/${REPO_SAFE}--${{ github.head_ref }}--${{ github.event.number }}--wstest-summary.md"
331332
echo "Summary file: $SUMMARY_FILE"
332333
333334
# Generate summary for clients and servers

0 commit comments

Comments
 (0)