Skip to content

Commit 81edd50

Browse files
author
Sebastian Molenda
committed
organization
1 parent 39fe505 commit 81edd50

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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
@@ -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
max-parallel: 1
2727
fail-fast: true
@@ -54,7 +54,7 @@ jobs:
5454
acceptance-tests:
5555
name: Acceptance tests
5656
runs-on:
57-
group: Default
57+
group: organization/Default
5858
timeout-minutes: 5
5959
steps:
6060
- name: Checkout project
@@ -103,7 +103,7 @@ jobs:
103103
name: Tests
104104
needs: [tests, acceptance-tests]
105105
runs-on:
106-
group: Default
106+
group: organization/Default
107107
steps:
108108
- name: Tests summary
109109
run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed"

.github/workflows/run-validations.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
lint:
77
name: Lint project
88
runs-on:
9-
group: Default
9+
group: organization/Default
1010
steps:
1111
- name: Checkout project
1212
uses: actions/checkout@v4
@@ -24,7 +24,7 @@ jobs:
2424
pubnub-yml:
2525
name: "Validate .pubnub.yml"
2626
runs-on:
27-
group: Default
27+
group: organization/Default
2828
steps:
2929
- name: Checkout project
3030
uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646
name: Validations
4747
needs: [pubnub-yml, lint]
4848
runs-on:
49-
group: Default
49+
group: organization/Default
5050
steps:
5151
- name: Validations summary
5252
run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"

0 commit comments

Comments
 (0)