Skip to content

Commit c26672d

Browse files
committed
Add organization prefix to gh actions
1 parent bbbd74f commit c26672d

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
tests:
1515
name: Integration and Unit tests
1616
runs-on:
17-
group: Default
17+
group: organization/Default
1818
strategy:
1919
max-parallel: 1
2020
fail-fast: true
@@ -69,7 +69,7 @@ jobs:
6969
name: Tests
7070
needs: [tests]
7171
runs-on:
72-
group: Default
72+
group: organization/Default
7373
steps:
7474
- name: Tests summary
7575
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
@@ -14,7 +14,7 @@ jobs:
1414
lint-project:
1515
name: "Lint project"
1616
runs-on:
17-
group: Default
17+
group: organization/Default
1818
strategy:
1919
max-parallel: 1
2020
fail-fast: true
@@ -64,7 +64,7 @@ jobs:
6464
pubnub-yml:
6565
name: "Validate .pubnub.yml"
6666
runs-on:
67-
group: Default
67+
group: organization/Default
6868
steps:
6969
- name: Checkout project
7070
uses: actions/checkout@v4
@@ -86,7 +86,7 @@ jobs:
8686
name: Validations
8787
needs: [pubnub-yml, lint-project]
8888
runs-on:
89-
group: Default
89+
group: organization/Default
9090
steps:
9191
- name: Validations summary
9292
run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"

0 commit comments

Comments
 (0)