File tree Expand file tree Collapse file tree 4 files changed +13
-27
lines changed Expand file tree Collapse file tree 4 files changed +13
-27
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,11 @@ jobs:
11
11
process :
12
12
name : Process command
13
13
if : github.event.issue.pull_request && endsWith(github.repository, '-private') != true
14
- runs-on :
15
- group : Default Larger Runners
16
- labels : ubuntu-latest-m
14
+ runs-on : ubuntu-latest
17
15
steps :
18
16
- name : Check referred user
19
17
id : user-check
20
- env :
18
+ env :
21
19
CLEN_BOT : ${{ secrets.CLEN_BOT }}
22
20
run : echo "expected-user=${{ startsWith(github.event.comment.body, format('@{0} ', env.CLEN_BOT)) }}" >> $GITHUB_OUTPUT
23
21
- name : Regular comment
42
40
with :
43
41
token : ${{ secrets.GH_TOKEN }}
44
42
listener : ${{ secrets.CLEN_BOT }}
45
- jira-api-key : ${{ secrets.JIRA_API_KEY }}
43
+ jira-api-key : ${{ secrets.JIRA_API_KEY }}
Original file line number Diff line number Diff line change 8
8
jobs :
9
9
check-release :
10
10
name : Check release required
11
- runs-on :
12
- group : Default Larger Runners
13
- labels : ubuntu-latest-m
11
+ runs-on : ubuntu-latest
14
12
if : github.event.pull_request.merged && endsWith(github.repository, '-private') != true
15
13
outputs :
16
14
release : ${{ steps.check.outputs.ready }}
29
27
token : ${{ secrets.GH_TOKEN }}
30
28
publish :
31
29
name : Publish package
32
- runs-on :
33
- group : Default Larger Runners
34
- labels : ubuntu-latest-m
30
+ runs-on : ubuntu-latest
35
31
needs : check-release
36
32
if : needs.check-release.outputs.release == 'true'
37
33
steps :
Original file line number Diff line number Diff line change 15
15
jobs :
16
16
tests :
17
17
name : Integration and Unit tests
18
- runs-on :
19
- group : Default Larger Runners
20
- labels : ubuntu-latest-m
18
+ runs-on : ubuntu-latest
21
19
strategy :
22
20
fail-fast : true
23
21
matrix :
24
22
node : [14, 16]
25
- env : [" ci:node" ]
23
+ env : [' ci:node' ]
26
24
include :
27
25
- node : 16
28
- env : " ci:web"
26
+ env : ' ci:web'
29
27
steps :
30
28
- name : Checkout repository
31
29
uses : actions/checkout@v3
51
49
uses : ./.github/.release/actions/actions/utils/fast-jobs-failure
52
50
all-tests :
53
51
name : Tests
54
- runs-on :
55
- group : Default Larger Runners
56
- labels : ubuntu-latest-m
52
+ runs-on : ubuntu-latest
57
53
needs : [tests]
58
54
steps :
59
55
- name : Tests summary
Original file line number Diff line number Diff line change @@ -12,10 +12,8 @@ defaults:
12
12
13
13
jobs :
14
14
pubnub-yml :
15
- name : " Validate .pubnub.yml"
16
- runs-on :
17
- group : Default Larger Runners
18
- labels : ubuntu-latest-m
15
+ name : ' Validate .pubnub.yml'
16
+ runs-on : ubuntu-latest
19
17
steps :
20
18
- name : Checkout project
21
19
uses : actions/checkout@v3
35
33
uses : ./.github/.release/actions/actions/utils/fast-jobs-failure
36
34
all-validations :
37
35
name : Validations
38
- runs-on :
39
- group : Default Larger Runners
40
- labels : ubuntu-latest-m
36
+ runs-on : ubuntu-latest
41
37
needs : [pubnub-yml]
42
38
steps :
43
39
- name : Validations summary
44
- run : echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"
40
+ run : echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"
You can’t perform that action at this time.
0 commit comments