Skip to content

Commit 589a840

Browse files
authored
Merge pull request #52 from context-dot-dev/release-please--branches--main--changes--next--components--context.dev
release: 0.3.1
2 parents b1f58a3 + 2a52dc3 commit 589a840

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+2421
-2977
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
lint:
1919
timeout-minutes: 10
2020
name: lint
21-
runs-on: ${{ github.repository == 'stainless-sdks/brand.dev-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
22-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
21+
runs-on: ${{ github.repository == 'stainless-sdks/context.dev-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
22+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
2323
steps:
2424
- uses: actions/checkout@v6
2525

@@ -37,8 +37,8 @@ jobs:
3737
build:
3838
timeout-minutes: 5
3939
name: build
40-
runs-on: ${{ github.repository == 'stainless-sdks/brand.dev-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
41-
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
40+
runs-on: ${{ github.repository == 'stainless-sdks/context.dev-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
41+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
4242
permissions:
4343
contents: read
4444
id-token: write
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Get GitHub OIDC Token
6060
if: |-
61-
github.repository == 'stainless-sdks/brand.dev-typescript' &&
61+
github.repository == 'stainless-sdks/context.dev-typescript' &&
6262
!startsWith(github.ref, 'refs/heads/stl/')
6363
id: github-oidc
6464
uses: actions/github-script@v8
@@ -67,7 +67,7 @@ jobs:
6767

6868
- name: Upload tarball
6969
if: |-
70-
github.repository == 'stainless-sdks/brand.dev-typescript' &&
70+
github.repository == 'stainless-sdks/context.dev-typescript' &&
7171
!startsWith(github.ref, 'refs/heads/stl/')
7272
env:
7373
URL: https://pkg.stainless.com/s
@@ -77,7 +77,7 @@ jobs:
7777

7878
- name: Upload MCP Server tarball
7979
if: |-
80-
github.repository == 'stainless-sdks/brand.dev-typescript' &&
80+
github.repository == 'stainless-sdks/context.dev-typescript' &&
8181
!startsWith(github.ref, 'refs/heads/stl/')
8282
env:
8383
URL: https://pkg.stainless.com/s?subpackage=mcp-server
@@ -88,7 +88,7 @@ jobs:
8888
test:
8989
timeout-minutes: 10
9090
name: test
91-
runs-on: ${{ github.repository == 'stainless-sdks/brand.dev-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
91+
runs-on: ${{ github.repository == 'stainless-sdks/context.dev-typescript' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
9292
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
9393
steps:
9494
- uses: actions/checkout@v6

.github/workflows/publish-npm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow is triggered when a GitHub release is created.
22
# It can also be run manually to re-publish to NPM in case it failed for some reason.
3-
# You can run this workflow by navigating to https://www.github.com/brand-dot-dev/typescript-sdk/actions/workflows/publish-npm.yml
3+
# You can run this workflow by navigating to https://www.github.com/context-dot-dev/typescript-sdk/actions/workflows/publish-npm.yml
44
name: Publish NPM
55
on:
66
workflow_dispatch:
@@ -40,11 +40,11 @@ jobs:
4040
fi
4141
yarn tsn scripts/publish-packages.ts "{ \"paths_released\": \"$PATHS_RELEASED\" }"
4242
env:
43-
NPM_TOKEN: ${{ secrets.BRAND_DEV_NPM_TOKEN || secrets.NPM_TOKEN }}
43+
NPM_TOKEN: ${{ secrets.CONTEXT_DEV_NPM_TOKEN || secrets.NPM_TOKEN }}
4444

4545
- name: Upload MCP Server DXT GitHub release asset
4646
run: |
4747
gh release upload ${{ github.event.release.tag_name }} \
48-
packages/mcp-server/brand_dev_api.mcpb
48+
packages/mcp-server/context_dev_api.mcpb
4949
env:
5050
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-doctor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'brand-dot-dev/typescript-sdk' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'context-dot-dev/typescript-sdk' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1313

1414
steps:
1515
- uses: actions/checkout@v6
@@ -18,5 +18,5 @@ jobs:
1818
run: |
1919
bash ./bin/check-release-environment
2020
env:
21-
NPM_TOKEN: ${{ secrets.BRAND_DEV_NPM_TOKEN || secrets.NPM_TOKEN }}
21+
NPM_TOKEN: ${{ secrets.CONTEXT_DEV_NPM_TOKEN || secrets.NPM_TOKEN }}
2222

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.prism.log
2+
.stdy.log
23
node_modules
34
yarn-error.log
45
codegen.log

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.30.0"
2+
".": "0.3.1"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 20
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-67e4ffa39d74649a6ae6b21e9f86cffa83c8a02d640ca6b4d4a3e619b54fbd38.yml
3-
openapi_spec_hash: 762e7ea7ae23297cc6b01f600a485410
4-
config_hash: 4cd3173ea1cce7183640aae49cfbb374
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev%2Fcontext.dev-3a8af8deb24e840300df2b1a74edfb075287af9f38e6d343960ba75fce00ab68.yml
3+
openapi_spec_hash: acc99bb843c5c7d630bc2a80b1b97444
4+
config_hash: 2b9a3f5957d6fe15f0e53b32642b99fa

0 commit comments

Comments
 (0)