-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (38 loc) · 992 Bytes
/
update.yml
File metadata and controls
40 lines (38 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Update Data
on:
push:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
get:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'true'
- name: "Update Submodules"
run: |
git submodule update --remote --force
git status
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Installing dependencies
run: npm ci
- name: Running translater
run: npm start
- name: Create commits
run: |
git config user.name 'Kumo'
git config user.email 'octo-kumo@users.noreply.github.com'
git commit -am "Auto Update"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
title: '[Auto] Data Test'
branch: 'update'
body: ''
labels: data update, automated