mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-06 15:20:25 +00:00
4a349a3b45
* fix: Fix stylua CI formatter | add charity link Update format.yml * chore: format with stylua Co-authored-by: Ashin Antony <83629316+ashincoder@users.noreply.github.com> Signed-off-by: Vladislav Doster <mvdoster@gmail.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
30 lines
920 B
YAML
30 lines
920 B
YAML
name: formatting
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- ".github/**"
|
|
- "*.md"
|
|
branches: "**"
|
|
|
|
jobs:
|
|
stylua:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- 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/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 [[ -n $(git status -s) ]]; then
|
|
git commit --all --message "chore: format with stylua"
|
|
fi
|
|
- name: Push changes
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: ${{ github.ref }}
|