From 6d797ec5a3f3fbfab4c93a44c0fa080bf4e0e662 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Tue, 12 May 2026 17:02:35 +0200 Subject: [PATCH] update: fix flake lock update Fix handling of bisect_future input. --- .github/workflows/lock-update.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lock-update.yaml b/.github/workflows/lock-update.yaml index c110b64..0e4548a 100644 --- a/.github/workflows/lock-update.yaml +++ b/.github/workflows/lock-update.yaml @@ -34,7 +34,9 @@ jobs: run: | git config user.email "update-flake-lock-pr@selfhostblocks.com" git config user.name "Update Flake Lock PR" - if [ -n "$BISECT_FUTURE" ]; then + if [ "$BISECT_FUTURE" = false ]; then + BISECT_FUTURE= + elif [ -n "$BISECT_FUTURE" ]; then BISECT_FUTURE=future fi nix run .#update-flake-lock-pr $BISECT_FUTURE