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 3dac551 commit 120e627Copy full SHA for 120e627
.github/workflows/sync-helm-charts.yaml
@@ -9,7 +9,9 @@ on:
9
10
jobs:
11
verify-helm-changes:
12
- if: github.event.pull_request.merged == true && !startsWith(github.event.pull_request.title, 'dependabot') || github.event_name == 'workflow_dispatch'
+ if: >-
13
+ (github.event.pull_request.merged == true && !startsWith(github.event.pull_request.title, 'dependabot'))
14
+ || github.event_name == 'workflow_dispatch'
15
name: Verify if AKO helm charts need updates
16
runs-on: ubuntu-latest
17
environment: release
@@ -87,7 +89,7 @@ jobs:
87
89
env:
88
90
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
91
PR_TITLE: ${{ github.event.pull_request.title }}
- run: |
92
+ run: |
93
cd ./helm-charts-cloned
94
95
if [[ -n $(git status --porcelain) ]]; then
0 commit comments