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 cd0f917 commit 32c7a44Copy full SHA for 32c7a44
.github/workflows/flux-diff.yaml
@@ -2,8 +2,6 @@ name: Flux Helm Diff
2
3
on:
4
pull_request:
5
- paths:
6
- - '**/helm-release.yaml'
7
8
jobs:
9
flux-diff:
@@ -24,6 +22,10 @@ jobs:
24
22
files=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep 'helm-release.yaml' || true)
25
23
echo "changed_files=$files" >> $GITHUB_OUTPUT
26
+ - name: No HelmRelease changes
+ if: ${{ steps.changed.outputs.changed_files == '' }}
27
+ run: echo "No helm-release.yaml changes detected. Skipping flux-local diff."
28
+
29
- name: Run Flux Local Diff
30
if: ${{ steps.changed.outputs.changed_files != '' }}
31
id: flux
0 commit comments