From b73392095a1b1a5697178b60031a5fe6bd5f1e0d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 23:33:48 +0000 Subject: [PATCH 1/2] chore(deps): update helm release external-secrets to v0.10.6 --- platform-apps/charts/external-secrets/Chart.lock | 6 +++--- platform-apps/charts/external-secrets/Chart.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/platform-apps/charts/external-secrets/Chart.lock b/platform-apps/charts/external-secrets/Chart.lock index 6e34592a..b117a53e 100644 --- a/platform-apps/charts/external-secrets/Chart.lock +++ b/platform-apps/charts/external-secrets/Chart.lock @@ -1,6 +1,6 @@ dependencies: - name: external-secrets repository: https://charts.external-secrets.io - version: 0.10.5 -digest: sha256:6de87e631446382393222a0d716523a5f9f11b0449418426cb556d69c948c917 -generated: "2024-10-25T06:45:21.857476399Z" + version: 0.10.6 +digest: sha256:ec2848c3753ac60d26f53f63d2ec3836462d9a15ba3d9c50df5b444c087b158b +generated: "2024-11-20T23:33:40.55659392Z" diff --git a/platform-apps/charts/external-secrets/Chart.yaml b/platform-apps/charts/external-secrets/Chart.yaml index e84c1b84..bb9f1ea5 100644 --- a/platform-apps/charts/external-secrets/Chart.yaml +++ b/platform-apps/charts/external-secrets/Chart.yaml @@ -26,5 +26,5 @@ appVersion: "1.0.0" dependencies: - name: external-secrets alias: external-secrets - version: 0.10.5 + version: 0.10.6 repository: https://charts.external-secrets.io From 0d633e9fd85fbcbd1de355f49eb3d95893864d0a Mon Sep 17 00:00:00 2001 From: Johannes Kleinlercher Date: Fri, 22 Nov 2024 16:58:53 +0100 Subject: [PATCH 2/2] show duff files only if there are files --- .github/create-pr-comment-file.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/create-pr-comment-file.sh b/.github/create-pr-comment-file.sh index eb061f59..0c5f4a01 100644 --- a/.github/create-pr-comment-file.sh +++ b/.github/create-pr-comment-file.sh @@ -87,14 +87,14 @@ done echo "Concatenation completed. Total output files: $output_file_count." -echo "all files:" -ls -l combined_file* - # default values comparison (we assume they will not be bigger than comment size limit) sed 's/DESCRIPTION_HERE/Changes Default Values/g' pr/.github/pr-diff-template.txt > out/comment-diff-default-values.txt sed -e "/DIFF_HERE/{r out/default-values-diff.txt" -e "d}" out/comment-diff-default-values.txt > comment-files/comment-default-values-result.txt if ls combined_file* 1> /dev/null 2>&1 ; then + echo "all files:" + ls -l combined_file* + combined_files=$( ls combined_file* ) for combined_file in ${combined_files} ; do sed 's/DESCRIPTION_HERE/Changes Rendered Chart/g' pr/.github/pr-diff-template.txt > out/comment-diff-${combined_file} @@ -105,6 +105,7 @@ if ls combined_file* 1> /dev/null 2>&1 ; then echo "matrix={\"comment-files\": $( jq -n '$ARGS.positional' --args $( ls comment-files/comment-result-* ) | tr "\n" " ")}" echo "matrix={\"comment-files\": $( jq -n '$ARGS.positional' --args $( ls comment-files/comment-result-* ) | tr "\n" " ")}" >> $GITHUB_OUTPUT else + echo "no changes found" # outpout empty matrix so matrix build is ignored echo "matrix={\"comment-files\": []}" echo "matrix={\"comment-files\": []}" >> $GITHUB_OUTPUT