LuaLS / LLS-Addons

Addons for use with Sumneko's Lua Language Server
https://github.com/LuaLS/lua-language-server
MIT License
63 stars 46 forks source link

Updated yue #64

Closed Frityet closed 1 year ago

Frityet commented 1 year ago

Is it possible to have this be automated?

cd addons/yue/module/
git checkout generation
lua autogen.lua
mv yue lib
git checkout master --force
rm -rf library/yue
mv lib library/yue
git add . && git commit -e "update" && git push
carsakiller commented 1 year ago

I would have to devise some sort of way for each addon to run a script - the first problem would be figuring out when it needs to be run. I think the best solution for now is for you to make a CI workflow in your repo that can be triggered manually. It can run autogen.lua, commit the changes, and maybe even automatically open a PR here.