Skip to content

Commit fb1e186

Browse files
committed
update CI for the schedule
1 parent ca05168 commit fb1e186

3 files changed

Lines changed: 15 additions & 9 deletions

File tree

.github/workflows/lazy-plugins.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [ "main" ]
66
pull_request:
77
branches: [ "main" ]
8+
schedule:
9+
- cron: '30 5,17 * * *'
810

911
jobs:
1012
build:
@@ -38,6 +40,10 @@ jobs:
3840
shell: bash
3941
run: |
4042
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
43+
git config --local user.name srbhp
44+
git config --local user.email "pradhanphy@gmail.com"
45+
git add --allow-empty -m "GH action Headlines $(date)"
46+
git push origin main
4147
4248
- name: Install Neovim
4349
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ First, we need to get the latest stable version of Neovim (currently 0.10.0). We
1515
```bash
1616
mkdir -p ~/.local/bin/
1717
cd ~/.local/bin
18-
wget https://github.com/neovim/neovim/releases/download/v0.11.0/nvim-linux-x86_64.appimage
18+
wget https://github.com/neovim/neovim/releases/download/v0.11.2/nvim-linux-x86_64.appimage
1919
mv nvim.appimage nvim
2020
chmod +x nvim
2121
export PATH=$PATH:~/.local/bin # add ~/.local/bin to your PATH . Add this line to your ~/.bashrc
@@ -38,9 +38,9 @@ To add support for many of the Language Server Protocol (LSP) features, i.e., Fo
3838

3939
#### Debian / Ubuntu
4040

41-
``` bash
42-
apt install clangd vim git cmake python3-venv luarocks tree-sitter-dev fd-find ripgrep gdb ninja-build
43-
```
41+
``` bash
42+
apt install clangd vim git cmake python3-venv luarocks tree-sitter-dev fd-find ripgrep gdb ninja-build
43+
```
4444

4545

4646
### List of Neovim Plugins
@@ -51,10 +51,10 @@ There are thousands of Neovim plugins available on GitHub. Only use the ones tha
5151

5252
1. Clone the repo
5353

54-
```bash
55-
cd ~/.config/
56-
git clone https://github.com/srbhp/nvim.git
57-
```
54+
```bash
55+
cd ~/.config/
56+
git clone https://github.com/srbhp/nvim.git
57+
```
5858

5959
2. Install Plugins
6060

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sudo apt install clangd vim git cmake python3-venv luarocks tree-sitter-dev fd-f
88
# install neovim
99
mkdir -p ~/.local/bin/
1010
cd ~/.local/bin || exit
11-
wget https://github.com/neovim/neovim/releases/download/v0.11.0/nvim-linux-x86_64.appimage
11+
wget https://github.com/neovim/neovim/releases/download/v0.11.2/nvim-linux-x86_64.appimage
1212
mv nvim-linux-x86_64.appimage nvim
1313
chmod +x nvim
1414
export PATH=$PATH:~/.local/bin # add ~/.local/bin to your PATH . Add this line to your ~/.bashrc

0 commit comments

Comments
 (0)