Skip to content

Commit

Permalink
build(runner): use smaller GitHub runner
Browse files Browse the repository at this point in the history
  • Loading branch information
parfeon committed May 27, 2024
1 parent 7675962 commit 35c30ad
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commands-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
name: Process command
if: github.event.issue.pull_request && endsWith(github.repository, '-private') != true
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
group: GH-runners
labels: linux-2core-publicip-1
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 @@ -9,8 +9,8 @@ jobs:
check-release:
name: Check release required
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
group: GH-runners
labels: linux-2core-publicip-1
if: github.event.pull_request.merged && endsWith(github.repository, '-private') != true
outputs:
release: ${{ steps.check.outputs.ready }}
Expand All @@ -30,8 +30,8 @@ jobs:
publish:
name: Publish package
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
group: GH-runners
labels: linux-2core-publicip-1
needs: check-release
if: needs.check-release.outputs.release == 'true'
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
tests:
name: Integration and Unit tests
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
group: GH-runners
labels: linux-2core-publicip-1
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -57,8 +57,8 @@ jobs:
all-tests:
name: Tests
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
group: GH-runners
labels: linux-2core-publicip-1
needs: [tests]
steps:
- name: Tests summary
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run-validations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
pubnub-yml:
name: 'Validate .pubnub.yml'
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
group: GH-runners
labels: linux-2core-publicip-1
steps:
- name: Checkout project
uses: actions/checkout@v4
Expand All @@ -36,8 +36,8 @@ jobs:
all-validations:
name: Validations
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
group: GH-runners
labels: linux-2core-publicip-1
needs: [pubnub-yml]
steps:
- name: Validations summary
Expand Down

0 comments on commit 35c30ad

Please sign in to comment.