You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by wa...@apache.org on 2023/01/19 03:17:14 UTC

[incubator-devlake-helm-chart] branch warren830-patch-4 created (now 740ee75)

This is an automated email from the ASF dual-hosted git repository.

warren pushed a change to branch warren830-patch-4
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-helm-chart.git


      at 740ee75  Update lint-chart-versions.yml

This branch includes the following new commits:

     new 740ee75  Update lint-chart-versions.yml

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-devlake-helm-chart] 01/01: Update lint-chart-versions.yml

Posted by wa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

warren pushed a commit to branch warren830-patch-4
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-helm-chart.git

commit 740ee75ba09cd4be5af1a2148c21f603f98792ea
Author: Warren Chen <yi...@merico.dev>
AuthorDate: Thu Jan 19 11:17:10 2023 +0800

    Update lint-chart-versions.yml
---
 .github/workflows/lint-chart-versions.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/lint-chart-versions.yml b/.github/workflows/lint-chart-versions.yml
index 522a8a7..dbe8484 100644
--- a/.github/workflows/lint-chart-versions.yml
+++ b/.github/workflows/lint-chart-versions.yml
@@ -51,7 +51,7 @@ jobs:
           base_version_patch=$(echo $base_chart_version_text | sed 's/v//;' | cut -d. -f 3)
           base_version=$(expr ${base_version_major} \* 1000000 + ${base_version_minor} \* 1000 + $base_version_patch)
           chart_version=$(expr ${chart_version_major} \* 1000000 + ${chart_version_minor} \* 1000 + $chart_version_patch)
-          if [[ $chart_version > $base_version ]] ; then
+          if [[ $chart_version >= $base_version ]] ; then
             echo chart version from $base_version to $chart_version
             echo chart version from $base_version to $chart_version :green_heart: >> $GITHUB_STEP_SUMMARY
           else