From a590caa34b0d680a8a9377b6add92a80e5975b4c Mon Sep 17 00:00:00 2001 From: Sharang Parnerkar Date: Mon, 18 May 2026 23:07:50 +0200 Subject: [PATCH] ci(tenant-registry): drop hashFiles job gate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit act_runner doesn't reliably evaluate hashFiles() at job-level if: conditions, so the gate skipped the test job even with the Go sources committed. tenant-registry has Go source from day one — let test always run. Refs: M4.1 --- .gitea/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index d3002ac..2b73c2c 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -57,7 +57,7 @@ jobs: test: runs-on: docker - if: hashFiles('go.sum') != '' + steps: - uses: actions/checkout@v4