2021-10-04 04:41:57 +00:00
|
|
|
name: formatting
|
2021-08-27 03:27:58 +00:00
|
|
|
on:
|
|
|
|
push:
|
2021-10-04 04:41:57 +00:00
|
|
|
paths-ignore:
|
|
|
|
- ".github/**"
|
|
|
|
- "*.md"
|
2021-08-27 03:46:10 +00:00
|
|
|
branches: "**"
|
2021-08-27 03:27:58 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
stylua:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-10-04 04:41:57 +00:00
|
|
|
- uses: JohnnyMorganz/stylua-action@1.0.0
|
2021-08-27 03:27:58 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2021-10-04 04:41:57 +00:00
|
|
|
args: --config-path=./.stylua.toml -g *.lua -g !lua/core/*.lua -g !lua/plugins/**/*.lua -g !lua/colors/*.lua -- .
|
2021-08-27 03:27:58 +00:00
|
|
|
- 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]"
|
2021-10-04 09:26:36 +00:00
|
|
|
if [[ -n $(git status -s) ]]; then
|
|
|
|
git commit --all --message "chore: format with stylua"
|
2021-08-27 03:27:58 +00:00
|
|
|
fi
|
2021-10-04 04:41:57 +00:00
|
|
|
- name: Push changes
|
2021-08-27 03:27:58 +00:00
|
|
|
uses: ad-m/github-push-action@master
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
branch: ${{ github.ref }}
|