We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07a2bb1 commit 6d66262Copy full SHA for 6d66262
2 files changed
.github/workflows/generate-diff.yml
@@ -16,6 +16,10 @@ jobs:
16
pull-requests: write
17
18
steps:
19
+ - name: Get changed files
20
+ id: changed-files
21
+ uses: tj-actions/changed-files@v45
22
+
23
- uses: actions/checkout@v4
24
with:
25
path: pull-request
@@ -35,7 +39,8 @@ jobs:
35
39
-v $(pwd)/output:/output \
36
40
-e TARGET_BRANCH=${{ github.head_ref }} \
37
41
-e REPO=${{ github.repository }} \
38
- dagandersen/argocd-diff-preview:v0.0.31
42
+ -e FILES_CHANGED="${{ steps.changed-files.outputs.all_changed_files }}" \
43
+ dagandersen/argocd-diff-preview:v0.0.31 --debug
44
45
- name: Post diff as comment
46
run: |
examples/helm/values/filtered.yaml
@@ -1 +1 @@
1
-fullnameOverride: super-app-name
+fullnameOverride: experiment
0 commit comments