Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 35312d8

Browse filesBrowse files
chore(ci): only use depot for staging repos
1 parent a6a45d4 commit 35312d8
Copy full SHA for 35312d8

File tree

3 files changed

+5
-5
lines changed
Filter options

3 files changed

+5
-5
lines changed

‎.github/workflows/ci.yml

Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
lint:
1313
timeout-minutes: 10
1414
name: lint
15-
runs-on: depot-ubuntu-24.04
15+
runs-on: ${{ github.repository == 'stainless-sdks/openai-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
1616
steps:
1717
- uses: actions/checkout@v4
1818

@@ -33,7 +33,7 @@ jobs:
3333
test:
3434
timeout-minutes: 10
3535
name: test
36-
runs-on: depot-ubuntu-24.04
36+
runs-on: ${{ github.repository == 'stainless-sdks/openai-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
3737
steps:
3838
- uses: actions/checkout@v4
3939

@@ -54,7 +54,7 @@ jobs:
5454
examples:
5555
timeout-minutes: 10
5656
name: examples
57-
runs-on: depot-ubuntu-24.04
57+
runs-on: ${{ github.repository == 'stainless-sdks/openai-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
5858
if: github.repository == 'openai/openai-python'
5959

6060
steps:

‎.github/workflows/publish-pypi.yml

Copy file name to clipboardExpand all lines: .github/workflows/publish-pypi.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
publish:
99
name: publish
10-
runs-on: depot-ubuntu-24.04
10+
runs-on: ubuntu-latest
1111
environment: publish
1212

1313
steps:

‎.github/workflows/release-doctor.yml

Copy file name to clipboardExpand all lines: .github/workflows/release-doctor.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
release_doctor:
1010
name: release doctor
11-
runs-on: depot-ubuntu-24.04
11+
runs-on: ubuntu-latest
1212
environment: publish
1313
if: github.repository == 'openai/openai-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1414

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.