From 97c32612d624748db8052b5f88417845820d9007 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Sun, 23 Nov 2025 11:21:45 +0100 Subject: [PATCH] Update workflow to build Helm chart on main branch This commit modifies the Git workflow for building the Helm chart for Paperless NGX. The primary change is the update of the triggering branch from 'patch-new-paperless' to 'main' for push events. Additionally, the paths filter is re-enabled to ensure that the workflow only triggers when changes are made to "charts/paperless-ngx/Chart.yaml". These adjustments were necessary to align the workflow with the project's main branch, ensuring that any updates to the Helm chart are promptly built and packaged. There are no breaking changes in this update, but the workflow will not execute for changes on other branches. --- .gitea/workflows/build-chart-paperless-ngx.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-chart-paperless-ngx.yml b/.gitea/workflows/build-chart-paperless-ngx.yml index 1a6e402..bd9bd3f 100644 --- a/.gitea/workflows/build-chart-paperless-ngx.yml +++ b/.gitea/workflows/build-chart-paperless-ngx.yml @@ -2,9 +2,9 @@ name: "Build Helm Chart" on: push: branches: - - patch-new-paperless - #paths: - # - "charts/paperless-ngx/Chart.yaml" + - main + paths: + - "charts/paperless-ngx/Chart.yaml" jobs: helm-package: