Skip to content

Commit 3f552ed

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 8ab1723 commit 3f552ed

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.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@v4
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:
@@ -33,7 +33,7 @@ jobs:
3333
name: Deploy
3434
if: success() && github.ref_type == 'tag'
3535
needs: [ test ]
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-latest-large
3737
steps:
3838
- name: Checkout sendgrid-python-http-client
3939
uses: actions/checkout@v2
@@ -65,7 +65,7 @@ jobs:
6565
name: Slack notify on failure
6666
if: failure() && github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || github.ref_type == 'tag')
6767
needs: [ test, deploy ]
68-
runs-on: ubuntu-latest
68+
runs-on: ubuntu-latest-large
6969
steps:
7070
- uses: rtCamp/action-slack-notify@v2
7171
env:

0 commit comments

Comments
 (0)