From 88f2c43947037ec12e8bb44099ca9a8459f95483 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 20 May 2026 15:17:38 -0400 Subject: [PATCH] ci(go): trigger test-go.yml on .golangci.yml changes too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The lint config change in 70529de (v2 schema migration) didn't re-run Go CI because .golangci.yml wasn't in test-go.yml's paths filter — the lint config was on dev but Go CI was still pinned to the previous failure. Adding it to both the push and pull_request filters so future lint-only edits retrigger the workflow. Side effect: this commit itself retriggers test-go.yml (the workflow file changed), so Go CI gets the v2 lint config now. Co-Authored-By: Claude Opus 4.7 (1M context) --- .forgejo/workflows/test-go.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.forgejo/workflows/test-go.yml b/.forgejo/workflows/test-go.yml index d853d501..fc967f7e 100644 --- a/.forgejo/workflows/test-go.yml +++ b/.forgejo/workflows/test-go.yml @@ -29,6 +29,7 @@ on: - 'sqlc.yaml' - 'internal/**' - 'cmd/**' + - '.golangci.yml' - '.forgejo/workflows/test-go.yml' pull_request: branches: [main] @@ -39,6 +40,7 @@ on: - 'sqlc.yaml' - 'internal/**' - 'cmd/**' + - '.golangci.yml' - '.forgejo/workflows/test-go.yml' jobs: