File tree Expand file tree Collapse file tree 4 files changed +19
-47
lines changed Expand file tree Collapse file tree 4 files changed +19
-47
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Sync labels
2
2
on :
3
3
push :
4
4
branches :
5
- - master
5
+ - main
6
6
paths :
7
7
- ' .github/labels.yml'
8
8
workflow_dispatch :
12
12
name : Run EndBug/label-sync
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v2
16
- - uses : EndBug/label-sync@v1
15
+ - uses : actions/checkout@v3
16
+ - uses : EndBug/label-sync@v2
17
17
with :
18
- token : ${{ secrets.GITHUB_TOKEN }}
19
18
config-file : ' .github/labels.yml'
Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
build :
9
- name : Test build
9
+ name : Build
10
10
runs-on : ubuntu-20.04
11
11
steps :
12
- - uses : actions/checkout@v2
13
- - run : npm i
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-node@v3
14
+ with :
15
+ cache : npm
16
+ - run : npm ci
14
17
- run : npm run build
15
18
16
19
lint :
17
- name : Check linting
20
+ name : Lint
18
21
runs-on : ubuntu-20.04
19
22
steps :
20
- - uses : actions/checkout@v2
21
- - run : npm i
23
+ - uses : actions/checkout@v3
24
+ - uses : actions/setup-node@v3
25
+ with :
26
+ cache : npm
27
+ - run : npm ci
22
28
- run : npm run lint
Original file line number Diff line number Diff line change 1
- name : Keep the versions up-to-date
1
+ name : Update tags
2
2
3
3
on :
4
4
release :
5
5
types : [published, edited]
6
6
7
7
jobs :
8
8
actions-tagger :
9
- runs-on : windows-latest
9
+ runs-on : windows-2022
10
10
steps :
11
- - uses : Actions-R-Us/actions-tagger@v1
11
+ - uses : Actions-R-Us/actions-tagger@v2
12
12
with :
13
- publish_latest : true
14
- env :
15
- GITHUB_TOKEN : " ${{secrets.GITHUB_TOKEN}}"
13
+ publish_latest_tag : true
You can’t perform that action at this time.
0 commit comments