Skip to content

Commit 6e8d0e2

Browse files
committed
Migrate runners
1 parent 9f2b3b1 commit 6e8d0e2

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

.github/workflows/external-message.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ on:
1313

1414
jobs:
1515
comment-on-pr:
16-
runs-on: ubuntu-latest
16+
runs-on:
17+
group: databricks-deco-testing-runner-group
18+
labels: ubuntu-latest-deco
19+
1720
permissions:
1821
pull-requests: write
1922

.github/workflows/integration-tests.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ on:
99
jobs:
1010
check-token:
1111
name: Check secrets access
12-
runs-on: ubuntu-latest
12+
13+
runs-on:
14+
group: databricks-deco-testing-runner-group
15+
labels: ubuntu-latest-deco
16+
1317
environment: "test-trigger-is"
1418
outputs:
1519
has_token: ${{ steps.set-token-status.outputs.has_token }}
@@ -27,7 +31,11 @@ jobs:
2731
2832
trigger-tests:
2933
name: Trigger Tests
30-
runs-on: ubuntu-latest
34+
35+
runs-on:
36+
group: databricks-deco-testing-runner-group
37+
labels: ubuntu-latest-deco
38+
3139
needs: check-token
3240
if: github.event_name == 'pull_request' && needs.check-token.outputs.has_token == 'true'
3341
environment: "test-trigger-is"
@@ -61,7 +69,11 @@ jobs:
6169
# * Avoid running integration tests twice, since it was already run at the tip of the branch before squashing.
6270
auto-approve:
6371
if: github.event_name == 'merge_group'
64-
runs-on: ubuntu-latest
72+
73+
runs-on:
74+
group: databricks-deco-testing-runner-group
75+
labels: ubuntu-latest-deco
76+
6577
steps:
6678
- name: Mark Check
6779
env:

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ on:
55
- "v*"
66
jobs:
77
publish:
8-
runs-on: ubuntu-latest
8+
runs-on:
9+
group: databricks-deco-testing-runner-group
10+
labels: ubuntu-latest-deco
11+
912
steps:
1013
- name: Checkout
1114
uses: actions/checkout@v2

0 commit comments

Comments
 (0)