diff --git a/.github/workflows/commands-handler.yml b/.github/workflows/commands-handler.yml index c9ecfeeaf..da8d82908 100644 --- a/.github/workflows/commands-handler.yml +++ b/.github/workflows/commands-handler.yml @@ -11,7 +11,9 @@ jobs: process: name: Process command if: github.event.issue.pull_request && endsWith(github.repository, '-private') != true - runs-on: ubuntu-latest + runs-on: + group: Default Larger Runners + labels: ubuntu-latest-m steps: - name: Check referred user id: user-check diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 31b715108..f17c39589 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,9 @@ on: jobs: check-release: name: Check release required - runs-on: ubuntu-latest + runs-on: + group: Default Larger Runners + labels: ubuntu-latest-m if: github.event.pull_request.merged && endsWith(github.repository, '-private') != true outputs: release: ${{ steps.check.outputs.ready }} @@ -28,7 +30,9 @@ jobs: token: ${{ secrets.GH_TOKEN }} publish-nuget: name: Publish to NuGet - runs-on: windows-2019 + runs-on: + group: Default Larger Runners + labels: windows-latest needs: check-release if: needs.check-release.outputs.release == 'true' defaults: @@ -66,7 +70,9 @@ jobs: retention-days: 1 publish: name: Publish package - runs-on: ubuntu-latest + runs-on: + group: Default Larger Runners + labels: ubuntu-latest-m needs: publish-nuget steps: - name: Checkout repository diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 08e9a6ed3..7a3ffa66b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,7 +10,9 @@ concurrency: jobs: tests: name: Integration and Unit tests - runs-on: windows-2019 + runs-on: + group: Default Larger Runners + labels: windows-latest defaults: run: shell: powershell @@ -42,7 +44,9 @@ jobs: uses: ./.github/.release/actions/actions/utils/fast-jobs-failure acceptance-tests: name: Acceptance tests - runs-on: windows-2019 + runs-on: + group: Default Larger Runners + labels: windows-latest defaults: run: shell: powershell @@ -93,7 +97,9 @@ jobs: uses: ./.github/.release/actions/actions/utils/fast-jobs-failure all-tests: name: Tests - runs-on: ubuntu-latest + runs-on: + group: Default Larger Runners + labels: ubuntu-latest-m needs: [tests, acceptance-tests] steps: - name: Tests summary diff --git a/.github/workflows/run-validations.yml b/.github/workflows/run-validations.yml index f81992ba9..a5cc553ce 100644 --- a/.github/workflows/run-validations.yml +++ b/.github/workflows/run-validations.yml @@ -10,7 +10,9 @@ concurrency: jobs: pubnub-yml: name: "Validate .pubnub.yml" - runs-on: ubuntu-latest + runs-on: + group: Default Larger Runners + labels: ubuntu-latest-m steps: - name: Checkout project uses: actions/checkout@v3 @@ -30,7 +32,9 @@ jobs: uses: ./.github/.release/actions/actions/utils/fast-jobs-failure all-validations: name: Validations - runs-on: ubuntu-latest + runs-on: + group: Default Larger Runners + labels: ubuntu-latest-m needs: [pubnub-yml] steps: - name: Validations summary