4747 - name: Prepare update branch
4848 if: steps.mlx.outputs.update_needed == 'true'
4949 env:
50- BRANCH: chore/sync- mlx-${{ steps.mlx.outputs.latest_version }}
50+ BRANCH: mlx-sync/ ${{ steps.mlx.outputs.latest_version }}
5151 run: git checkout -B "$BRANCH"
5252
5353 - name: Update MLX submodule
9494 fi
9595 git config user.name "github-actions[bot]"
9696 git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
97- git commit -m "chore : sync MLX to ${TAG}"
97+ git commit -m "mlx : sync to ${TAG}"
9898 echo "changed=true" >> "$GITHUB_OUTPUT"
9999
100100 - name: Setup .NET
@@ -112,16 +112,16 @@ jobs:
112112 - name: Push changes
113113 if: steps.commit.outputs.changed == 'true'
114114 env:
115- BRANCH: chore/sync- mlx-${{ steps.mlx.outputs.latest_version }}
115+ BRANCH: mlx-sync/ ${{ steps.mlx.outputs.latest_version }}
116116 run: |
117117 git push --force --set-upstream origin "$BRANCH"
118118
119119 - name: Create or update pull request
120120 if: steps.commit.outputs.changed == 'true'
121121 uses: actions/github-script@v7
122122 env:
123- BRANCH: chore/sync- mlx-${{ steps.mlx.outputs.latest_version }}
124- PR_TITLE: chore : sync MLX to ${{ steps.mlx.outputs.latest_tag }}
123+ BRANCH: mlx-sync/ ${{ steps.mlx.outputs.latest_version }}
124+ PR_TITLE: "MLX : sync to ${{ steps.mlx.outputs.latest_tag }}"
125125 PR_BODY: |
126126 - Update `extern/mlx` submodule to `${{ steps.mlx.outputs.latest_tag }}`
127127 - Align package version fields to `${{ steps.mlx.outputs.latest_version }}`
0 commit comments