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 cbdcade commit 56955deCopy full SHA for 56955de
.github/workflows/sync-helm-charts.yaml
@@ -87,13 +87,14 @@ jobs:
87
- name: Create PR for helm-charts repo
88
env:
89
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
90
- run: |
+ PR_TITLE: ${{ github.event.pull_request.title }}
91
+ run: |
92
cd ./helm-charts-cloned
93
94
if [[ -n $(git status --porcelain) ]]; then
95
jobname=${{ github.run_id }}
- if [[ -n "${{ github.event.pull_request.title }}" ]]; then
96
- jobname=$(echo "${{ github.event.pull_request.title }}" | tr -c '[:alnum:]-_' '_')
+ if [[ -n "${PR_TITLE}" ]]; then
97
+ jobname=$(echo "${PR_TITLE}" | tr -c '[:alnum:]-_' '_')
98
fi
99
100
export BRANCH=ako-helm-update-"${jobname}"
0 commit comments