We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4d0c363 + 07b70e7 commit 1f0ad7bCopy full SHA for 1f0ad7b
.github/workflows/update-toml-version.yaml
@@ -32,5 +32,8 @@ jobs:
32
git config --global user.name "GitHub Actions"
33
git add llama-cpp-sys-2/Cargo.toml llama-cpp-2/Cargo.toml
34
git commit -m "Bump version to $NEXT_VERSION [skip ci]"
35
- # Push the changes back to the repository
36
- git push origin main:$GITHUB_REF
+ # Create a branch for the changes
+ git checkout -b version-bump-$NEXT_VERSION
37
+ # Push the changes and create a pull request
38
+ git push origin version-bump-$NEXT_VERSION
39
+ gh pr create --base main --head version-bump-$NEXT_VERSION --title "Bump version to $NEXT_VERSION"
0 commit comments