Skip to content

Commit

Permalink
build(workflow): use default runners group
Browse files Browse the repository at this point in the history
  • Loading branch information
parfeon committed May 28, 2024
1 parent 31eadb4 commit ca04b8b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commands-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Process command
if: github.event.issue.pull_request && endsWith(github.repository, '-private') != true
runs-on:
group: ubuntu-gh
group: Default
steps:
- name: Check referred user
id: user-check
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:
jobs:
check-release:
name: Check release required
runs-on:
group: ubuntu-gh
if: github.event.pull_request.merged && endsWith(github.repository, '-private') != true
runs-on:
group: Default
outputs:
release: ${{ steps.check.outputs.ready }}
steps:
Expand All @@ -28,10 +28,10 @@ jobs:
token: ${{ secrets.GH_TOKEN }}
publish:
name: Publish package
runs-on:
group: ubuntu-gh
needs: check-release
if: needs.check-release.outputs.release == 'true'
runs-on:
group: Default
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
tests:
name: Integration and Unit tests
runs-on:
group: ubuntu-gh
group: Default
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
all-tests:
name: Tests
runs-on:
group: ubuntu-gh
group: Default
needs: [tests]
steps:
- name: Tests summary
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-validations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
pubnub-yml:
name: 'Validate .pubnub.yml'
runs-on:
group: ubuntu-gh
group: Default
steps:
- name: Checkout project
uses: actions/checkout@v4
Expand All @@ -35,7 +35,7 @@ jobs:
all-validations:
name: Validations
runs-on:
group: ubuntu-gh
group: Default
needs: [pubnub-yml]
steps:
- name: Validations summary
Expand Down

0 comments on commit ca04b8b

Please sign in to comment.