From f57fb5d1d6ef269f64b3763ed426dd93d74ea771 Mon Sep 17 00:00:00 2001 From: Timo Kruth Date: Thu, 5 Mar 2026 14:14:28 +0100 Subject: [PATCH 1/3] ci: disable automatic triggers for build and helm workflows --- .github/workflows/build.yml | 6 +----- .github/workflows/helm.yml | 6 ------ 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8c0d613c..b1b9e7a5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,11 +1,7 @@ name: Build + Publish on: - push: - branches: - - main - tags: - - 'v*' + workflow_dispatch: env: BASE_DEV_VERSION: 2.5.0 diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index 9543c076..43d0c1ff 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -1,12 +1,6 @@ name: Helm Chart CI on: - # Triggers the workflow on push or pull request events but only for the dev branch - push: - branches: [ main ] - paths: [ dev/helm/** ] - - # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: From a4b732056db595058ee5efde20ddbc08cb724e4f Mon Sep 17 00:00:00 2001 From: Test User Date: Thu, 5 Mar 2026 15:54:09 +0100 Subject: [PATCH 2/3] fix: use valid timestamp for storage pending state (#846) --- server/graph/resolvers/storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/graph/resolvers/storage.js b/server/graph/resolvers/storage.js index b9de96a5..026de41d 100644 --- a/server/graph/resolvers/storage.js +++ b/server/graph/resolvers/storage.js @@ -75,7 +75,7 @@ module.exports = { state: { status: 'pending', message: 'Initializing...', - lastAttempt: null + lastAttempt: new Date().toISOString() } }).where('key', tgt.key) } From fa037a0d52cbd9d03f0128e884a40a366615bd57 Mon Sep 17 00:00:00 2001 From: Test User Date: Thu, 5 Mar 2026 21:28:28 +0100 Subject: [PATCH 3/3] Revert "ci: disable automatic triggers for build and helm workflows" This reverts commit f57fb5d1d6ef269f64b3763ed426dd93d74ea771. --- .github/workflows/build.yml | 6 +++++- .github/workflows/helm.yml | 6 ++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b1b9e7a5..8c0d613c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,11 @@ name: Build + Publish on: - workflow_dispatch: + push: + branches: + - main + tags: + - 'v*' env: BASE_DEV_VERSION: 2.5.0 diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index 43d0c1ff..9543c076 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -1,6 +1,12 @@ name: Helm Chart CI on: + # Triggers the workflow on push or pull request events but only for the dev branch + push: + branches: [ main ] + paths: [ dev/helm/** ] + + # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: