Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/auto-bump-llamacpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Auto Bump llama.cpp
on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:

jobs:
auto-bump:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive

- name: Check changes llama.cpp master HEAD and push update if any
id: git-status
run: |
cd llama.cpp/
git fetch origin
git checkout master
git reset --hard origin/master
cd ../

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update llama.cpp
title: Auto bump llama.cpp version
body: Auto bump llama.cpp version
branch: bump-llamacpp
branch-suffix: timestamp
labels: "type: chore"
reviewers: tikikun
assignees: vuonghoainam
delete-branch: true
add-paths : "llama.cpp"
base: main

1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[submodule "llama.cpp"]
path = llama.cpp
url = https://github.com/ggerganov/llama.cpp
branch = master
2 changes: 1 addition & 1 deletion llama.cpp