Skip to content

Commit 120e627

Browse files
authored
CLOUDP-366563: Fix sync helm chart workflow (again) (#3043)
Signed-off-by: jose.vazquez <[email protected]>
1 parent 3dac551 commit 120e627

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/sync-helm-charts.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99

1010
jobs:
1111
verify-helm-changes:
12-
if: github.event.pull_request.merged == true && !startsWith(github.event.pull_request.title, 'dependabot') || github.event_name == 'workflow_dispatch'
12+
if: >-
13+
(github.event.pull_request.merged == true && !startsWith(github.event.pull_request.title, 'dependabot'))
14+
|| github.event_name == 'workflow_dispatch'
1315
name: Verify if AKO helm charts need updates
1416
runs-on: ubuntu-latest
1517
environment: release
@@ -87,7 +89,7 @@ jobs:
8789
env:
8890
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
8991
PR_TITLE: ${{ github.event.pull_request.title }}
90-
run: |
92+
run: |
9193
cd ./helm-charts-cloned
9294
9395
if [[ -n $(git status --porcelain) ]]; then

0 commit comments

Comments
 (0)