1
1
name : Unicode Version Check
2
2
on :
3
3
schedule :
4
- - cron : " 0 0 * * *"
5
-
4
+ - cron : ' 0 0 * * *'
5
+
6
6
jobs :
7
7
check :
8
8
name : Version Check
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v3
12
- - uses : actions/setup-node@v3
13
- with :
14
- node-version : 18
15
- cache : " npm "
16
- - name : Install dependencies
17
- run : npm ci
18
- - run : gulp checkUnicodeVersion
11
+ - uses : actions/checkout@v3
12
+ - uses : actions/setup-node@v3
13
+ with :
14
+ node-version : lts/*
15
+ check-latest : true
16
+ - name : Install dependencies
17
+ run : npm ci
18
+ - run : gulp checkUnicodeVersion
19
19
upgrade :
20
20
name : Upgrade Version
21
21
runs-on : ubuntu-latest
22
22
needs :
23
23
- check
24
24
if : failure()
25
25
steps :
26
- - uses : actions/checkout@v3
26
+ - uses : actions/checkout@v3
27
27
with :
28
28
persist-credentials : false
29
29
repository : ${{ github.event.pull_request.head.repo.full_name }}
30
30
ref : ${{ github.event.pull_request.head.ref }}
31
31
- uses : actions/setup-node@v3
32
32
with :
33
- node-version : 18
34
- cache : " npm "
33
+ node-version : lts/*
34
+ check-latest : true
35
35
- uses : actions/setup-python@v3
36
36
with :
37
- python-version : " 3.x"
37
+ python-version : ' 3.x'
38
38
- name : Install dependencies
39
39
run : |
40
40
pip install --upgrade pip
@@ -46,13 +46,10 @@ jobs:
46
46
- name : Create Pull Request
47
47
uses : peter-evans/create-pull-request@v4
48
48
with :
49
- commit-message : " feat(unicode): upgraded version"
49
+ commit-message : ' feat(unicode): upgraded version'
50
50
committer : Kai Schwarz <kschwarz@hexonet.net>
51
51
branch : upgradeUnicode
52
52
base : master
53
- title : " Upgrade Unicode to latest Version"
53
+ title : ' Upgrade Unicode to latest Version'
54
54
assignees : papakai
55
55
reviewers : papakai
56
-
57
-
58
-
0 commit comments