From 672f5ba0dd781740b4af9ba7d2f9c857600ed835 Mon Sep 17 00:00:00 2001 From: Codex Date: Tue, 4 Aug 2026 21:49:51 +0200 Subject: [PATCH] chore: fix Swift interface branch names --- .github/workflows/generate-swiftinterface.yml | 2 +- .github/workflows/update-swiftinterfaces.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-swiftinterface.yml b/.github/workflows/generate-swiftinterface.yml index a7a4239..aa5eca3 100644 --- a/.github/workflows/generate-swiftinterface.yml +++ b/.github/workflows/generate-swiftinterface.yml @@ -59,7 +59,7 @@ jobs: shell: bash run: | target_branch="${INPUT_TARGET_BRANCH:-$GITHUB_REF_NAME}" - interface_branch="automation/swiftinterfaces/$GITHUB_RUN_ID/$PLATFORM" + interface_branch="automation/swiftinterfaces-$GITHUB_RUN_ID-$PLATFORM" git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git switch -C "$interface_branch" diff --git a/.github/workflows/update-swiftinterfaces.yml b/.github/workflows/update-swiftinterfaces.yml index e649de9..8391374 100644 --- a/.github/workflows/update-swiftinterfaces.yml +++ b/.github/workflows/update-swiftinterfaces.yml @@ -30,7 +30,7 @@ jobs: id: branch shell: bash run: | - update_branch="automation/swiftinterfaces/$GITHUB_RUN_ID" + update_branch="automation/swiftinterfaces-$GITHUB_RUN_ID" git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git switch -C "$update_branch"