Skip to content

Commit 53727c1

Browse files
authored
SMODS can finally go into beta now
Cryptid Refactor - Gamesets, New Calc Support, Etc.
2 parents 9ea1749 + a9f1fb0 commit 53727c1

File tree

124 files changed

+88694
-83701
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+88694
-83701
lines changed

.github/workflows/pull_request.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Stylua
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
8+
jobs:
9+
stylua:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check out code
13+
uses: actions/checkout@v4
14+
with:
15+
token: ${{ secrets.GITHUB_TOKEN }}
16+
17+
- name: Run stylua
18+
uses: JohnnyMorganz/stylua-action@v4
19+
with:
20+
token: ${{ secrets.GITHUB_TOKEN }}
21+
version: latest
22+
args: .
23+
24+
- name: Commit changes
25+
run: |
26+
git config --global user.name "jolly[bot]"
27+
git config --global user.email "jolly[bot]@users.noreply.github.com"
28+
git add .
29+
git diff --cached --quiet || git commit -m "jolly-bot: auto-format Lua files using Stylua"
30+
git push

0 commit comments

Comments
 (0)