fix(CI): CI bug fixed | docs: Added charity contribution link (#532)
* fix: Fix stylua CI formatter | add charity link Update format.yml * chore: format with stylua Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
6fb97be55c
commit
7d5a15f7ce
|
@ -27,7 +27,7 @@
|
|||
src="https://img.shields.io/github/repo-size/siduck76/NvChad?style=flat-square&label=Repo"
|
||||
alt="GitHub repository size"
|
||||
/></a>
|
||||
<a href="https://github.com/siduck76/NvChad/blob/main/LICENSE"
|
||||
<a href="https://github.com/siduck76/NvChad/blob/main/LICENSE"
|
||||
><img
|
||||
src="https://img.shields.io/github/license/siduck76/NvChad?style=flat-square&logo=GNU&label=License"
|
||||
alt="License"
|
||||
|
@ -181,3 +181,4 @@ I would happily accept donations but would feel awful since I'm not the only one
|
|||
- https://www.gofundme.com/f/Burundi-Nutrition
|
||||
- https://charity.gofundme.com/o/en/campaign/feedingyemen
|
||||
- https://www.gofundme.com/f/6p8ea-give-ghanaian-orphans-the-gift-of-a-ride-to-school
|
||||
- https://www.isupportmyanmar.com
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
name: format
|
||||
name: formatting
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- ".github/**"
|
||||
- "*.md"
|
||||
branches: "**"
|
||||
|
||||
jobs:
|
||||
|
@ -8,20 +11,18 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup and run stylua
|
||||
uses: JohnnyMorganz/stylua-action@1.0.0
|
||||
- uses: JohnnyMorganz/stylua-action@1.0.0
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
args: --config-path=./.stylua.toml -g *.lua -g !lua/core/**/*.lua -g !lua/modules/**/*.lua -g !lua/utils/*.lua -- .
|
||||
args: --config-path=./.stylua.toml -g *.lua -g !lua/core/*.lua -g !lua/plugins/**/*.lua -g !lua/colors/*.lua -- .
|
||||
- name: Commit files
|
||||
run: |
|
||||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
git config --local user.name "github-actions[bot]"
|
||||
if [[ ! -z $(git status -s) ]]; then
|
||||
git add .
|
||||
git commit -m "chore: format source code"
|
||||
if ! [[ -z $(git status -s) ]]; then
|
||||
git commit --all -m "chore: format with stylua" init.lua lua/**
|
||||
fi
|
||||
- name: Push formatted files
|
||||
- name: Push changes
|
||||
uses: ad-m/github-push-action@master
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
|
@ -11,9 +11,6 @@ vim.cmd [[ au TermOpen term://* setlocal nonumber norelativenumber | setfiletype
|
|||
-- Don't show status line on certain windows
|
||||
vim.cmd [[ autocmd BufEnter,BufWinEnter,FileType,WinEnter * lua require("core.utils").hide_statusline() ]]
|
||||
|
||||
--auto close file exploer when quiting incase a single buffer is left
|
||||
-- vim.cmd([[ autocmd BufEnter * if (winnr("$") == 1 && &filetype == 'nvimtree') | q | endif ]])
|
||||
|
||||
-- Open a file from its last left off position
|
||||
-- vim.cmd [[ au BufReadPost * if expand('%:p') !~# '\m/\.git/' && line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif ]]
|
||||
-- File extension specific tabbing
|
||||
|
|
Loading…
Reference in New Issue