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 7d353db commit a19378dCopy full SHA for a19378d
.github/workflows/auto-update.yml
@@ -0,0 +1,26 @@
1
+name: webhook-auto-update
2
+
3
+on:
4
+ repository_dispatch:
5
+ types:
6
+ - update-tstl
7
8
+jobs:
9
+ build:
10
+ name: build
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v2
15
+ - name: Setup Node.js environment
16
+ uses: actions/setup-node@v1
17
+ with:
18
+ node-version: "12"
19
+ - name: Update TSTL
20
+ run: npm update typescript-to-lua
21
+ - name: Commit update
22
+ run: |
23
+ git config --global user.name 'lolleko'
24
+ git config --global user.email 'lolleko@users.noreply.github.com'
25
+ git commit -am "Automated tstl update"
26
+ git push
0 commit comments