Skip to content

Commit c2a2be7

Browse files
ci: migrate runs-on to Twilio runner labels
Repoints runs-on to the standard Twilio runner labels for this repo. Unmapped runners (macOS, matrix expressions, etc.) left as-is.
1 parent 76788e7 commit c2a2be7

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/lint-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- main
1010
jobs:
1111
ruff:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-latest-large
1313
steps:
1414
- uses: actions/checkout@v3
1515
- run: pip install --user ruff

.github/workflows/pr-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
validate:
88
name: Validate title
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-latest-large
1010
steps:
1111
- uses: amannn/action-semantic-pull-request@v5
1212
with:

.github/workflows/test-and-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
test:
1515
name: Test
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-latest-large
1717
timeout-minutes: 20
1818
strategy:
1919
matrix:
@@ -43,7 +43,7 @@ jobs:
4343
name: Deploy
4444
if: success() && github.ref_type == 'tag'
4545
needs: [ test ]
46-
runs-on: ubuntu-latest
46+
runs-on: ubuntu-latest-large
4747
steps:
4848
- name: Checkout sendgrid-python
4949
uses: actions/checkout@v3
@@ -82,7 +82,7 @@ jobs:
8282
name: Slack notify on failure
8383
if: failure() && github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || github.ref_type == 'tag')
8484
needs: [ test, deploy ]
85-
runs-on: ubuntu-latest
85+
runs-on: ubuntu-latest-large
8686
steps:
8787
- uses: rtCamp/action-slack-notify@v2
8888
env:

0 commit comments

Comments
 (0)