Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(DEVOPS-7314): migrate to gha scale sets #6

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build:
name: Sphinx build

runs-on: ubuntu-latest
runs-on: [ 'lendable-medium-dind-x64-linux' ]

steps:
- name: Checkout
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
doctor-rst:
name: DOCtor-RST

runs-on: ubuntu-latest
runs-on: [ 'lendable-medium-dind-x64-linux' ]

steps:
- name: Checkout
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
php-cs-fixer:
name: PHP-CS-Fixer

runs-on: ubuntu-latest
runs-on: [ 'lendable-medium-dind-x64-linux' ]

steps:
- name: Checkout
Expand All @@ -32,7 +32,7 @@ jobs:
composer-normalize:
name: composer-normalize

runs-on: ubuntu-latest
runs-on: [ 'lendable-medium-dind-x64-linux' ]

steps:
- name: Checkout
Expand All @@ -46,7 +46,7 @@ jobs:
yaml-files:
name: YAML files

runs-on: ubuntu-latest
runs-on: [ 'lendable-medium-dind-x64-linux' ]

steps:
- name: Checkout
Expand All @@ -66,7 +66,7 @@ jobs:
xml-files:
name: XML files

runs-on: ubuntu-latest
runs-on: [ 'lendable-medium-dind-x64-linux' ]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Quality assurance
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
runs-on: [ 'lendable-medium-dind-x64-linux' ]
steps:
- uses: actions/checkout@master
- name: PHPStan
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
stale:
runs-on: ubuntu-latest
runs-on: [ 'lendable-medium-dind-x64-linux' ]

steps:
- name: Close stale issues and pull requests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
test:
name: PHP ${{ matrix.php-version }} + ${{ matrix.dependencies }} + ${{ matrix.variant }}

runs-on: ubuntu-latest
runs-on: [ 'lendable-medium-dind-x64-linux' ]

continue-on-error: ${{ matrix.allowed-to-fail }}

Expand Down