We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70475a commit 08e6d41Copy full SHA for 08e6d41
1 file changed
.github/workflows/pull_request.yml
@@ -7,16 +7,22 @@ jobs:
7
runs-on: ubuntu-latest
8
9
steps:
10
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v3
11
with:
12
fetch-depth: 200
13
+ ref: ${{ github.event.pull_request.head.sha }}
14
15
- name: Install and run Luacheck
16
uses: nebularg/actions-luacheck@v1
17
18
args: "--no-color -q"
19
annotate: warning
20
21
+ - uses: JohnnyMorganz/stylua-action@1.0.0
22
+ with:
23
+ token: ${{ secrets.GITHUB_TOKEN }}
24
+ args: --check .
25
+
26
- name: Update Build Date
27
run: sed -i "s/@build-time@/`date +%Y%m%d%H%M%S`/" WeakAuras/Init.lua
28
0 commit comments