Skip to content

Commit ef3e955

Browse files
committed
push to main
1 parent 38c38bf commit ef3e955

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,6 @@ jobs:
2828
repository: bucketco/docs
2929
ssh-key: ${{ secrets.DOCS_DEPLOY_KEY }}
3030
path: bucket-docs
31-
- name: Create a new branch
32-
run: |
33-
cd bucket-docs
34-
current_commit=$(git rev-parse HEAD)
35-
new_branch="update-docs-$current_commit"
36-
git checkout -b "$new_branch"
37-
echo "new_branch=$new_branch" >> $GITHUB_ENV
3831
- name: Copy generated docs to docs repo
3932
run: |
4033
rm -rf bucket-docs/sdk-docs
@@ -46,5 +39,5 @@ jobs:
4639
git config user.email "github-actions[bot]@bucket.co"
4740
git add sdk-docs
4841
git commit -m "Update documentation"
49-
git push --set-upstream origin "$new_branch"
42+
git push
5043

packages/browser-sdk/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export interface Feature {
190190
) => void;
191191
}
192192
/**
193-
* BucketClient serves as an http client
193+
* BucketClient lets you interact with the Bucket API.
194194
*
195195
*/
196196
export class BucketClient {

0 commit comments

Comments
 (0)