generated from nvim-treesitter/module-template
-
Notifications
You must be signed in to change notification settings - Fork 203
50 lines (43 loc) · 1.72 KB
/
update-readme.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Check README parser info
on:
push:
branches:
- master
jobs:
update-readme:
name: Update README.md
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install tree-sitter CLI
run: npm i -g tree-sitter-cli
- name: Prepare
run: |
sudo apt-get update && sudo apt-get install libfuse2
sudo add-apt-repository universe
wget https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
chmod u+x nvim.appimage
mkdir -p ~/.local/share/nvim/site/pack/nvim-treesitter-textobject/start
ln -s $(pwd) ~/.local/share/nvim/site/pack/nvim-treesitter-textobject/start
mkdir -p ~/.local/share/nvim/site/pack/nvim-treesitter/start
cd ~/.local/share/nvim/site/pack/nvim-treesitter/start
git clone https://github.com/nvim-treesitter/nvim-treesitter.git
- name: Compile parsers
run: ./nvim.appimage --headless -c "TSInstallSync all" -c "q"
# inspired by nvim-lspconfigs
- name: Check README
run: |
git config user.email "actions@github"
git config user.name "Github Actions"
./nvim.appimage --headless -c "luafile ./scripts/update-readme.lua" -c "q" || echo "Needs update"
git add README.md
git commit -m "docs: update queries in README" || echo 'No commit necessary!'
git clean -xf
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
commit-message: "docs: update queries in README"
title: "docs: update queries in README"
branch: update-readme
base: ${{ github.head_ref }}