From 1097e37c392748b5ef5500a8113a7bb317c2bab8 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Wed, 1 May 2024 02:43:19 +0530 Subject: [PATCH 01/21] changes file --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 6466d5d..afb8445 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -15,7 +15,7 @@ jobs: tree -a -I '.git' git status - name: Run fast CI (emulated by a short sleep) - run: sleep 5 + run: sleep 1 changed_files: runs-on: ubuntu-latest # windows-latest || macos-latest From cb3721dae3e501147959a10a6c6ee9208d0b171f Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Wed, 1 May 2024 02:45:38 +0530 Subject: [PATCH 02/21] changes file --- build.gradle.kts | 1 + helm/chart.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index e69de29..09e3685 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -0,0 +1 @@ + . \ No newline at end of file diff --git a/helm/chart.yaml b/helm/chart.yaml index e69de29..945c9b4 100644 --- a/helm/chart.yaml +++ b/helm/chart.yaml @@ -0,0 +1 @@ +. \ No newline at end of file From 5b4347fa3054cea48b552693cdaad13d02f41c78 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:31:07 +0530 Subject: [PATCH 03/21] something --- .github/workflows/CI.yaml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index afb8445..d2d42ba 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -20,6 +20,11 @@ jobs: changed_files: runs-on: ubuntu-latest # windows-latest || macos-latest name: Test changed-files + outputs: + helm_any_changed: ${{ steps.changed-files-yaml.outputs.helm_any_changed }} + helm_all_changed_files: ${{ steps.changed-files-yaml.outputs.helm_all_changed_files }} + build_any_changed: ${{ steps.changed-files-yaml.outputs.build_any_changed }} + build_all_changed_files: ${{ steps.changed-files-yaml.outputs.build_all_changed_files }} steps: - uses: actions/checkout@v4 - name: Get all test, doc and src files that have changed @@ -49,4 +54,16 @@ jobs: DOC_ALL_CHANGED_FILES: ${{ steps.changed-files-yaml.outputs.build_all_changed_files }} run: | echo "One or more build file(s) has changed." - echo "List all the files that have changed: $DOC_ALL_CHANGED_FILES" \ No newline at end of file + echo "List all the files that have changed: $DOC_ALL_CHANGED_FILES" + + + perform-echo: + needs: + - changed-files + runs-on: ubuntu-latest + if: ${{ needs.changed-files.outputs.helm_any_changed == 'true' }} + steps: + - name: Echo + run: | + echo "Helm files changed" + echo "List all the files that have changed: ${{ needs.changed-files.outputs.helm_all_changed_files }}" \ No newline at end of file From 0742d9ff34731b0ca13c0d8864982ce8508e6bce Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:32:30 +0530 Subject: [PATCH 04/21] something --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index d2d42ba..db0cb0a 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -59,7 +59,7 @@ jobs: perform-echo: needs: - - changed-files + - changed_files runs-on: ubuntu-latest if: ${{ needs.changed-files.outputs.helm_any_changed == 'true' }} steps: From dc4f45f78bbbb0cefb8ea88c88ca5663ab193cc0 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:33:27 +0530 Subject: [PATCH 05/21] someting --- helm/chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/chart.yaml b/helm/chart.yaml index 945c9b4..90a1d60 100644 --- a/helm/chart.yaml +++ b/helm/chart.yaml @@ -1 +1 @@ -. \ No newline at end of file +... \ No newline at end of file From a511ebb625732b9da27b93eac5cce4ce3ddb31c5 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:37:49 +0530 Subject: [PATCH 06/21] someting --- .github/workflows/CI.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index db0cb0a..5a1ff32 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -61,9 +61,12 @@ jobs: needs: - changed_files runs-on: ubuntu-latest - if: ${{ needs.changed-files.outputs.helm_any_changed == 'true' }} steps: - name: Echo run: | echo "Helm files changed" - echo "List all the files that have changed: ${{ needs.changed-files.outputs.helm_all_changed_files }}" \ No newline at end of file + echo "all variables are:" + echo "helm_any_changed: ${{ needs.changed_files.outputs.helm_any_changed }}" + echo "helm_all_changed_files: ${{ needs.changed_files.outputs.helm_all_changed_files }}" + echo "build_any_changed: ${{ needs.changed_files.outputs.build_any_changed }}" + echo "build_all_changed_files: ${{ needs.changed_files.outputs.build_all_changed_files }}" \ No newline at end of file From 23a7055ec57a0d2604336ca2f56fc17be5542475 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:39:02 +0530 Subject: [PATCH 07/21] someting --- .github/workflows/CI.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 5a1ff32..2d665b0 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -61,6 +61,7 @@ jobs: needs: - changed_files runs-on: ubuntu-latest + if: needs.changed_files.outputs.helm_any_changed == true steps: - name: Echo run: | From 4d45ac378721861f35e0a88ff9bbed3b35e2ef6e Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:40:30 +0530 Subject: [PATCH 08/21] someting --- .github/workflows/CI.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 2d665b0..9d0253f 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -61,7 +61,6 @@ jobs: needs: - changed_files runs-on: ubuntu-latest - if: needs.changed_files.outputs.helm_any_changed == true steps: - name: Echo run: | @@ -70,4 +69,14 @@ jobs: echo "helm_any_changed: ${{ needs.changed_files.outputs.helm_any_changed }}" echo "helm_all_changed_files: ${{ needs.changed_files.outputs.helm_all_changed_files }}" echo "build_any_changed: ${{ needs.changed_files.outputs.build_any_changed }}" - echo "build_all_changed_files: ${{ needs.changed_files.outputs.build_all_changed_files }}" \ No newline at end of file + echo "build_all_changed_files: ${{ needs.changed_files.outputs.build_all_changed_files }}" + + conditional: + needs: + - changed_files + runs-on: ubuntu-latest + if: ${{ needs.changed_files.outputs.helm_any_changed == true }} + steps: + - name: Echo + run: | + echo "Helm files Updated" \ No newline at end of file From 549a4b1e5dee7c48d0902e6153ca1584e2675441 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:41:21 +0530 Subject: [PATCH 09/21] someting --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 9d0253f..98b31b8 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -75,7 +75,7 @@ jobs: needs: - changed_files runs-on: ubuntu-latest - if: ${{ needs.changed_files.outputs.helm_any_changed == true }} + if: ${{ needs.changed_files.outputs.helm_any_changed }} steps: - name: Echo run: | From 7212c0e565f98333948543a426e9aa9a643e6aa1 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:42:13 +0530 Subject: [PATCH 10/21] someting --- .github/workflows/CI.yaml | 2 +- helm/chart.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 98b31b8..965c7e3 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -77,6 +77,6 @@ jobs: runs-on: ubuntu-latest if: ${{ needs.changed_files.outputs.helm_any_changed }} steps: - - name: Echo + - name: conditional-Echo run: | echo "Helm files Updated" \ No newline at end of file diff --git a/helm/chart.yaml b/helm/chart.yaml index 90a1d60..945c9b4 100644 --- a/helm/chart.yaml +++ b/helm/chart.yaml @@ -1 +1 @@ -... \ No newline at end of file +. \ No newline at end of file From 5e6aea27d19c7b32ec8b37133fe2667ea1861f9c Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:45:34 +0530 Subject: [PATCH 11/21] someting --- .github/workflows/CI.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 965c7e3..49b5a86 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -67,8 +67,10 @@ jobs: echo "Helm files changed" echo "all variables are:" echo "helm_any_changed: ${{ needs.changed_files.outputs.helm_any_changed }}" + echo ${{ needs.changed_files.outputs.helm_any_changed }} echo "helm_all_changed_files: ${{ needs.changed_files.outputs.helm_all_changed_files }}" echo "build_any_changed: ${{ needs.changed_files.outputs.build_any_changed }}" + echo ${{ needs.changed_files.outputs.build_any_changed }} echo "build_all_changed_files: ${{ needs.changed_files.outputs.build_all_changed_files }}" conditional: From a315d9a6c01f06331efdf372f0cc4517ad673da3 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:46:30 +0530 Subject: [PATCH 12/21] someting --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 49b5a86..8c84a70 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -77,7 +77,7 @@ jobs: needs: - changed_files runs-on: ubuntu-latest - if: ${{ needs.changed_files.outputs.helm_any_changed }} + if: needs.changed_files.outputs.helm_any_changed steps: - name: conditional-Echo run: | From 792a82bae49380badb4cbe71097c9c293cc99f79 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:48:37 +0530 Subject: [PATCH 13/21] someting --- .github/workflows/CI.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 8c84a70..4e18a6e 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -81,4 +81,5 @@ jobs: steps: - name: conditional-Echo run: | - echo "Helm files Updated" \ No newline at end of file + echo "Helm files Updated" + cat $GITHUB_OUTPUT \ No newline at end of file From 97a74d9071bf45ae9146162c364737d60612ec3e Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:51:33 +0530 Subject: [PATCH 14/21] someting --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 4e18a6e..e6d42c8 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -77,7 +77,7 @@ jobs: needs: - changed_files runs-on: ubuntu-latest - if: needs.changed_files.outputs.helm_any_changed + if: ${{ needs.changed_files.outputs.helm_any_changed == true }} steps: - name: conditional-Echo run: | From ace425b143e4a4bc6cd0e97d35a0b795b693bd19 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:52:17 +0530 Subject: [PATCH 15/21] someting --- helm/chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/chart.yaml b/helm/chart.yaml index 945c9b4..90a1d60 100644 --- a/helm/chart.yaml +++ b/helm/chart.yaml @@ -1 +1 @@ -. \ No newline at end of file +... \ No newline at end of file From 59713e3c09680ccddd8e9dc2b5b0184ed733265f Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:53:05 +0530 Subject: [PATCH 16/21] someting --- .github/workflows/CI.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index e6d42c8..9fbcd8f 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -73,6 +73,8 @@ jobs: echo ${{ needs.changed_files.outputs.build_any_changed }} echo "build_all_changed_files: ${{ needs.changed_files.outputs.build_all_changed_files }}" + echo ${{ needs.changed_files.outputs.helm_any_changed == true }} + conditional: needs: - changed_files From 3a6264801ccd4adaa93bf13a1d08da86a30fe397 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:55:17 +0530 Subject: [PATCH 17/21] someting --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 9fbcd8f..6d142fc 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -73,7 +73,7 @@ jobs: echo ${{ needs.changed_files.outputs.build_any_changed }} echo "build_all_changed_files: ${{ needs.changed_files.outputs.build_all_changed_files }}" - echo ${{ needs.changed_files.outputs.helm_any_changed == true }} + echo ${{ needs.changed_files.outputs.helm_any_changed == 'true' }} conditional: needs: From 5938da96b086c3cd5adbd0f44915e9262fc69cde Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:55:56 +0530 Subject: [PATCH 18/21] someting --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 6d142fc..74426cb 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -79,7 +79,7 @@ jobs: needs: - changed_files runs-on: ubuntu-latest - if: ${{ needs.changed_files.outputs.helm_any_changed == true }} + if: ${{ needs.changed_files.outputs.helm_any_changed == 'true' }} steps: - name: conditional-Echo run: | From ef6487b9553d7ad57c48525ade8677fbce7eb7d6 Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:56:54 +0530 Subject: [PATCH 19/21] someting --- .github/workflows/CI.yaml | 1 + helm/chart.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 74426cb..c753155 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -74,6 +74,7 @@ jobs: echo "build_all_changed_files: ${{ needs.changed_files.outputs.build_all_changed_files }}" echo ${{ needs.changed_files.outputs.helm_any_changed == 'true' }} + echo ${{ needs.changed_files.outputs.helm_any_changed == 'false' }} conditional: needs: diff --git a/helm/chart.yaml b/helm/chart.yaml index 90a1d60..945c9b4 100644 --- a/helm/chart.yaml +++ b/helm/chart.yaml @@ -1 +1 @@ -... \ No newline at end of file +. \ No newline at end of file From 7aa9a6b9c9a99c6a83dc3cf42391fd8eac255aea Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:58:02 +0530 Subject: [PATCH 20/21] someting --- .github/workflows/CI.yaml | 2 +- helm/chart.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index c753155..109ad08 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -76,7 +76,7 @@ jobs: echo ${{ needs.changed_files.outputs.helm_any_changed == 'true' }} echo ${{ needs.changed_files.outputs.helm_any_changed == 'false' }} - conditional: + conditional-for-helm-change: needs: - changed_files runs-on: ubuntu-latest diff --git a/helm/chart.yaml b/helm/chart.yaml index 945c9b4..90a1d60 100644 --- a/helm/chart.yaml +++ b/helm/chart.yaml @@ -1 +1 @@ -. \ No newline at end of file +... \ No newline at end of file From d3f2996e9da052b6b630de054169b9481e1cd6fe Mon Sep 17 00:00:00 2001 From: harshraj22 Date: Thu, 2 May 2024 20:58:50 +0530 Subject: [PATCH 21/21] someting --- helm/chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/chart.yaml b/helm/chart.yaml index 90a1d60..945c9b4 100644 --- a/helm/chart.yaml +++ b/helm/chart.yaml @@ -1 +1 @@ -... \ No newline at end of file +. \ No newline at end of file