File tree Expand file tree Collapse file tree 4 files changed +15
-35
lines changed Expand file tree Collapse file tree 4 files changed +15
-35
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
27
25
if : steps.user-check.outputs.expected-user == 'true'
28
26
uses : actions/checkout@v3
29
27
with :
30
- token : ${{ secrets.GH_TOKEN }}
28
+ token : ${{ secrets.GH_TOKEN }}
31
29
- name : Checkout release actions
32
30
if : steps.user-check.outputs.expected-user == 'true'
33
31
uses : actions/checkout@v3
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 @@ -2,16 +2,13 @@ name: Automated product release
2
2
3
3
on :
4
4
pull_request :
5
- branches : [ master ]
6
- types : [ closed ]
7
-
5
+ branches : [master]
6
+ types : [closed]
8
7
9
8
jobs :
10
9
check-release :
11
10
name : Check release required
12
- runs-on :
13
- group : Default Larger Runners
14
- labels : ubuntu-latest-m
11
+ runs-on : ubuntu-latest
15
12
if : github.event.pull_request.merged && endsWith(github.repository, '-private') != true
16
13
outputs :
17
14
release : ${{ steps.check.outputs.ready }}
30
27
token : ${{ secrets.GH_TOKEN }}
31
28
publish :
32
29
name : Publish package
33
- runs-on :
34
- group : Default Larger Runners
35
- labels : ubuntu-latest-m
30
+ runs-on : ubuntu-latest
36
31
needs : check-release
37
32
if : needs.check-release.outputs.release == 'true'
38
33
steps :
76
71
with :
77
72
token : ${{ secrets.GH_TOKEN }}
78
73
acceptance-tests-workflow : Tests
79
-
Original file line number Diff line number Diff line change 7
7
jobs :
8
8
tests :
9
9
name : Integration and Unit tests
10
- runs-on :
11
- group : Default Larger Runners
12
- labels : ubuntu-latest-m
10
+ runs-on : ubuntu-latest
13
11
steps :
14
12
- name : Checkout repository
15
13
uses : actions/checkout@v3
37
35
uses : ./.github/.release/actions/actions/utils/fast-jobs-failure
38
36
acceptance-tests :
39
37
name : Acceptance tests
40
- runs-on :
41
- group : Default Larger Runners
42
- labels : ubuntu-latest-m
38
+ runs-on : ubuntu-latest
43
39
env :
44
40
pubKey : somePubKey
45
41
subKey : someSubKey
90
86
uses : ./.github/.release/actions/actions/utils/fast-jobs-failure
91
87
all-tests :
92
88
name : Tests
93
- runs-on :
94
- group : Default Larger Runners
95
- labels : ubuntu-latest-m
89
+ runs-on : ubuntu-latest
96
90
needs : [tests, acceptance-tests]
97
91
steps :
98
92
- name : Tests summary
Original file line number Diff line number Diff line change @@ -13,9 +13,7 @@ defaults:
13
13
jobs :
14
14
pubnub-yml :
15
15
name : " Validate .pubnub.yml"
16
- runs-on :
17
- group : Default Larger Runners
18
- labels : ubuntu-latest-m
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
build-validation :
37
35
name : Validate build
38
- runs-on :
39
- group : Default Larger Runners
40
- labels : ubuntu-latest-m
36
+ runs-on : ubuntu-latest
41
37
steps :
42
38
- name : Checkout repository
43
39
uses : actions/checkout@v3
57
53
uses : ./.github/.release/actions/actions/utils/fast-jobs-failure
58
54
all-validations :
59
55
name : Validations
60
- runs-on :
61
- group : Default Larger Runners
62
- labels : ubuntu-latest-m
56
+ runs-on : ubuntu-latest
63
57
needs : [pubnub-yml, build-validation]
64
58
steps :
65
59
- name : Validations summary
66
- run : echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"
60
+ 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