Skip to content

Commit d1787db

Browse files
committed
fix
1 parent 37bff68 commit d1787db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests_results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
original_sha=$(echo "$original_sha" | tr -cd '[:alnum:]')
5555
5656
# Ref: Allow alphanumeric characters, slashes, underscores, dots, and dashes
57-
original_ref=$(echo "$original_ref" | tr -cd '[:alnum:]/_-.')
57+
original_ref=$(echo "$original_ref" | tr -cd '[:alnum:]/_.-')
5858
5959
# Conclusion: Allow alphabetical characters and underscores
6060
original_conclusion=$(echo "$original_conclusion" | tr -cd '[:alpha:]_')

.github/workflows/upload-idf-component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fi
2222
2323
# Read and sanitize the branch/tag name
24-
branch=$(echo "${{ github.event.workflow_run.head_branch }}" | tr -cd '[:alnum:]/_-.')
24+
branch=$(echo "${{ github.event.workflow_run.head_branch }}" | tr -cd '[:alnum:]/_.-')
2525
2626
if [[ $branch == refs/tags/* ]]; then
2727
tag="${branch#refs/tags/}"

0 commit comments

Comments
 (0)