31 lines
946 B
YAML
31 lines
946 B
YAML
|
name: format
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths: '**.lua'
|
||
|
branches: [main, dev]
|
||
|
|
||
|
jobs:
|
||
|
stylua:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Setup and run stylua
|
||
|
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 -- .
|
||
|
- 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"
|
||
|
fi
|
||
|
- name: Push formatted files
|
||
|
uses: ad-m/github-push-action@master
|
||
|
with:
|
||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
branch: ${{ github.ref }}
|