Skip to content

Commit 9e2f7ad

Browse files
authored
build(gha): revert used runner configuration (#345)
1 parent 3eca7d2 commit 9e2f7ad

File tree

4 files changed

+13
-27
lines changed

4 files changed

+13
-27
lines changed

.github/workflows/commands-handler.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@ jobs:
1111
process:
1212
name: Process command
1313
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
1715
steps:
1816
- name: Check referred user
1917
id: user-check
20-
env:
18+
env:
2119
CLEN_BOT: ${{ secrets.CLEN_BOT }}
2220
run: echo "expected-user=${{ startsWith(github.event.comment.body, format('@{0} ', env.CLEN_BOT)) }}" >> $GITHUB_OUTPUT
2321
- name: Regular comment
@@ -42,4 +40,4 @@ jobs:
4240
with:
4341
token: ${{ secrets.GH_TOKEN }}
4442
listener: ${{ secrets.CLEN_BOT }}
45-
jira-api-key: ${{ secrets.JIRA_API_KEY }}
43+
jira-api-key: ${{ secrets.JIRA_API_KEY }}

.github/workflows/release.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ on:
88
jobs:
99
check-release:
1010
name: Check release required
11-
runs-on:
12-
group: Default Larger Runners
13-
labels: ubuntu-latest-m
11+
runs-on: ubuntu-latest
1412
if: github.event.pull_request.merged && endsWith(github.repository, '-private') != true
1513
outputs:
1614
release: ${{ steps.check.outputs.ready }}
@@ -29,9 +27,7 @@ jobs:
2927
token: ${{ secrets.GH_TOKEN }}
3028
publish:
3129
name: Publish package
32-
runs-on:
33-
group: Default Larger Runners
34-
labels: ubuntu-latest-m
30+
runs-on: ubuntu-latest
3531
needs: check-release
3632
if: needs.check-release.outputs.release == 'true'
3733
steps:

.github/workflows/run-tests.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,15 @@ env:
1515
jobs:
1616
tests:
1717
name: Integration and Unit tests
18-
runs-on:
19-
group: Default Larger Runners
20-
labels: ubuntu-latest-m
18+
runs-on: ubuntu-latest
2119
strategy:
2220
fail-fast: true
2321
matrix:
2422
node: [14, 16]
25-
env: ["ci:node"]
23+
env: ['ci:node']
2624
include:
2725
- node: 16
28-
env: "ci:web"
26+
env: 'ci:web'
2927
steps:
3028
- name: Checkout repository
3129
uses: actions/checkout@v3
@@ -51,9 +49,7 @@ jobs:
5149
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
5250
all-tests:
5351
name: Tests
54-
runs-on:
55-
group: Default Larger Runners
56-
labels: ubuntu-latest-m
52+
runs-on: ubuntu-latest
5753
needs: [tests]
5854
steps:
5955
- name: Tests summary

.github/workflows/run-validations.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ defaults:
1212

1313
jobs:
1414
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
1917
steps:
2018
- name: Checkout project
2119
uses: actions/checkout@v3
@@ -35,10 +33,8 @@ jobs:
3533
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
3634
all-validations:
3735
name: Validations
38-
runs-on:
39-
group: Default Larger Runners
40-
labels: ubuntu-latest-m
36+
runs-on: ubuntu-latest
4137
needs: [pubnub-yml]
4238
steps:
4339
- 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"

0 commit comments

Comments
 (0)