From 766f4d171271a94d660ac9f39ec38c6380be78a9 Mon Sep 17 00:00:00 2001 From: Ricardo Maraschini Date: Thu, 9 Nov 2023 13:19:34 +0100 Subject: [PATCH] chore: fix wrong var name and add comment --- .github/workflows/dependencies.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dependencies.yaml b/.github/workflows/dependencies.yaml index 8f09662e8..6fcf1d278 100644 --- a/.github/workflows/dependencies.yaml +++ b/.github/workflows/dependencies.yaml @@ -1,6 +1,7 @@ name: Custom Dependabot on: schedule: + # everyday at midnight. - cron: '0 0 * * *' jobs: update-dependencies: @@ -11,7 +12,7 @@ jobs: - name: AdminConsole run: | export VERSION=`curl https://api.github.com/repos/replicatedhq/kots-helm/tags | jq -r .[].name | grep -v alpha | head -1 | tr -d v` - sed -i "/^ADMIN_CONSOLE_CHART_VERSION/c\ADMIN_CONSOLE_CHART_NAME = $VERSION" Makefile + sed -i "/^ADMIN_CONSOLE_CHART_VERSION/c\ADMIN_CONSOLE_CHART_VERSION = $VERSION" Makefile - name: Embedded Cluster Operator run: | export VERSION=`curl https://api.github.com/repos/replicatedhq/embedded-cluster-operator/tags | jq -r .[].name | head -1 | tr -d v`