We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7471a20 commit 1f43796Copy full SHA for 1f43796
.github/workflows/sync-helm-charts.yaml
@@ -86,13 +86,14 @@ jobs:
86
- name: Create PR for helm-charts repo
87
env:
88
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
89
- run: |
+ PR_TITLE: ${{ github.event.pull_request.title }}
90
+ run: |
91
cd ./helm-charts-cloned
92
93
if [[ -n $(git status --porcelain) ]]; then
94
jobname=${{ github.run_id }}
- if [[ -n "${{ github.event.pull_request.title }}" ]]; then
95
- jobname=$(echo "${{ github.event.pull_request.title }}" | tr -c '[:alnum:]-_' '_')
+ if [[ -n "${PR_TITLE}" ]]; then
96
+ jobname=$(echo "${PR_TITLE}" | tr -c '[:alnum:]-_' '_')
97
fi
98
99
export BRANCH=ako-helm-update-"${jobname}"
0 commit comments