Skip to content

Commit 13ff777

Browse files
authored
Fix organization runner group name (#126)
* build(workflow): fix organization runner group name * build: add missing groups
1 parent 473e918 commit 13ff777

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
tests:
1717
name: Integration and Unit tests
1818
runs-on:
19-
group: Default
19+
group: organization/Default
2020
strategy:
2121
fail-fast: true
2222
matrix:
@@ -64,7 +64,7 @@ jobs:
6464
acceptance-tests:
6565
name: Acceptance tests
6666
runs-on:
67-
group: Default
67+
group: organization/Default
6868
steps:
6969
- name: Checkout project
7070
uses: actions/checkout@v4
@@ -106,7 +106,7 @@ jobs:
106106
name: Tests
107107
needs: [tests, acceptance-tests]
108108
runs-on:
109-
group: Default
109+
group: organization/Default
110110
steps:
111111
- name: Tests summary
112112
run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed"

.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
@@ -36,7 +36,7 @@ jobs:
3636
name: Validations
3737
needs: [pubnub-yml]
3838
runs-on:
39-
group: Default
39+
group: organization/Default
4040
steps:
4141
- name: Validations summary
4242
run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"

0 commit comments

Comments
 (0)