Skip to content

Commit f67caf7

Browse files
committed
build(workflow): change runner group
1 parent c5304f4 commit f67caf7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/commands-handler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Process command
1313
if: github.event.issue.pull_request && endsWith(github.repository, '-private') != true
1414
runs-on:
15-
group: Default
15+
group: organization/Default
1616
steps:
1717
- name: Check referred user
1818
id: user-check

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Check release required
1111
if: github.event.pull_request.merged && endsWith(github.repository, '-private') != true
1212
runs-on:
13-
group: Default
13+
group: organization/Default
1414
outputs:
1515
release: ${{ steps.check.outputs.ready }}
1616
steps:
@@ -31,7 +31,7 @@ jobs:
3131
needs: check-release
3232
if: needs.check-release.outputs.release == 'true'
3333
runs-on:
34-
group: Default
34+
group: organization/Default
3535
steps:
3636
- name: Checkout repository
3737
uses: actions/checkout@v4

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
tests:
2222
name: Integration and Unit tests
2323
runs-on:
24-
group: Default
24+
group: organization/Default
2525
strategy:
2626
fail-fast: true
2727
matrix:
@@ -56,7 +56,7 @@ jobs:
5656
all-tests:
5757
name: Tests
5858
runs-on:
59-
group: Default
59+
group: organization/Default
6060
needs: [tests]
6161
steps:
6262
- name: Tests summary

.github/workflows/run-validations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
pubnub-yml:
1515
name: 'Validate .pubnub.yml'
1616
runs-on:
17-
group: Default
17+
group: organization/Default
1818
steps:
1919
- name: Checkout project
2020
uses: actions/checkout@v4
@@ -35,7 +35,7 @@ jobs:
3535
all-validations:
3636
name: Validations
3737
runs-on:
38-
group: Default
38+
group: organization/Default
3939
needs: [pubnub-yml]
4040
steps:
4141
- name: Validations summary

0 commit comments

Comments
 (0)