From 4b09878d908acb601ec1ee5ec3b0bccf784e2f14 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Tue, 24 Feb 2026 16:52:41 -0500 Subject: [PATCH] =?UTF-8?q?Fix=20git-bug=20sync=20workflow:=20bridge=20con?= =?UTF-8?q?figure=20=E2=86=92=20bridge=20new?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `bridge configure` subcommand was renamed to `bridge new` in git-bug v0.10.x. Also add --non-interactive flag for CI. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/sync-git-bug.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync-git-bug.yml b/.github/workflows/sync-git-bug.yml index 4fcbe96d5..46efc8da2 100644 --- a/.github/workflows/sync-git-bug.yml +++ b/.github/workflows/sync-git-bug.yml @@ -35,12 +35,13 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - git-bug bridge configure \ + git-bug bridge new \ --name=github \ --target=github \ --owner=dandi \ --project=dandi-cli \ - --token="$GH_TOKEN" + --token="$GH_TOKEN" \ + --non-interactive - name: Pull issues from GitHub run: git-bug bridge pull github