This repository was archived by the owner on Jul 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +42
-1
lines changed Expand file tree Collapse file tree 3 files changed +42
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Auto Bump llama.cpp
2+ on :
3+ schedule :
4+ - cron : ' 0 2 * * *'
5+ workflow_dispatch :
6+
7+ jobs :
8+ auto-bump :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Checkout repository
12+ uses : actions/checkout@v3
13+ with :
14+ submodules : recursive
15+
16+ - name : Check changes llama.cpp master HEAD and push update if any
17+ id : git-status
18+ run : |
19+ cd llama.cpp/
20+ git fetch origin
21+ git checkout master
22+ git reset --hard origin/master
23+ cd ../
24+
25+ - name : Create Pull Request
26+ uses : peter-evans/create-pull-request@v5
27+ with :
28+ token : ${{ secrets.GITHUB_TOKEN }}
29+ commit-message : Update llama.cpp
30+ title : Auto bump llama.cpp version
31+ body : Auto bump llama.cpp version
32+ branch : bump-llamacpp
33+ branch-suffix : timestamp
34+ labels : " type: chore"
35+ reviewers : tikikun
36+ assignees : vuonghoainam
37+ delete-branch : true
38+ add-paths : " llama.cpp"
39+ base : main
40+
Original file line number Diff line number Diff line change 11[submodule "llama.cpp "]
22 path = llama.cpp
33 url = https://github.com/ggerganov/llama.cpp
4+ branch = master
You can’t perform that action at this time.
0 commit comments