Skip to content

Commit 067abd8

Browse files
Remove invalid characters from job name (#2164)
1 parent f74bb1a commit 067abd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-helm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
if [[ -n $(git status --porcelain) ]]; then
7474
jobname=${{ github.run_id }}
7575
if [[ -n "${{ github.event.pull_request.title }}" ]]; then
76-
jobname="${{ github.event.pull_request.title }}"
76+
jobname=$(echo "${{ github.event.pull_request.title }}" | tr -cd '[:alnum:]-_')
7777
fi
7878
7979
BRANCH_NAME=CRD-RBAC-changes-"${jobname}"

0 commit comments

Comments
 (0)