From 3423d415351d867e422db1a9f64f42cf6fc53a33 Mon Sep 17 00:00:00 2001 From: Holden Date: Wed, 17 Jun 2026 00:56:52 +0000 Subject: [PATCH] fix: exclude main from lockfile update trigger main is protected and only receives merges from dev; pushing directly to it from CI is blocked by branch protection rules. --- .github/workflows/update-lockfile.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-lockfile.yml b/.github/workflows/update-lockfile.yml index 514447a..c42f6f1 100644 --- a/.github/workflows/update-lockfile.yml +++ b/.github/workflows/update-lockfile.yml @@ -5,6 +5,7 @@ on: push: branches: - '**' + - '!main' paths: - 'pyproject.toml' workflow_dispatch: