Skip to content

Commit f455df9

Browse files
committed
ok this should actually work now
1 parent 6547f0c commit f455df9

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/pull_request.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,12 @@ jobs:
2020
with:
2121
token: ${{ secrets.GITHUB_TOKEN }}
2222
version: latest
23-
# CLI arguments
2423
args: .
24+
25+
- name: Commit changes
26+
run: |
27+
git config --global user.name "github-actions[bot]"
28+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
29+
git add .
30+
git diff --cached --quiet || git commit -m "JollyBot: auto-format Lua files using Stylua"
31+
git push

lib/content.lua

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -315,13 +315,11 @@ SMODS.ObjectType({
315315
self:inject_card(G.P_CENTERS.j_space)
316316
end,
317317
})
318-
SMODS.ObjectType ( {
318+
SMODS.ObjectType ( {
319319
object_type = "ObjectType",
320-
key = "Tier3",
320+
key = "Tier3",
321321
default = "v_blank",
322-
cards = {
323-
324-
},
322+
cards = {},
325323
})
326324
SMODS.ObjectType({
327325
object_type = "ObjectType",

0 commit comments

Comments
 (0)