diff --git a/.changeset/config.json b/.changeset/config.json index edef2eb..c788977 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,7 +1,7 @@ { "$schema": "https://unpkg.com/@changesets/config@3.0.3/schema.json", "changelog": "@changesets/cli/changelog", - "commit": false, + "commit": true, "fixed": [], "linked": [], "access": "restricted", diff --git a/.changeset/old-moles-rule.md b/.changeset/old-moles-rule.md new file mode 100644 index 0000000..c183155 --- /dev/null +++ b/.changeset/old-moles-rule.md @@ -0,0 +1,5 @@ +--- +"@avaprotocol/sdk-js": patch +--- + +authKey is no longer stored in client and added getAddresses test cases diff --git a/.github/workflows/record-changeset.yml b/.github/workflows/record-changeset.yml index 7614b0a..8a16064 100644 --- a/.github/workflows/record-changeset.yml +++ b/.github/workflows/record-changeset.yml @@ -73,10 +73,6 @@ jobs: git config --local user.email "action@github.com" git config --local user.name "GitHub Action" - # Add changeset files to commit - git add .changeset/ - git commit -m "chore: add changeset for ${COMMIT_MSG}" || exit 1 - # Create and checkout new branch using changeset filename BRANCH_NAME="changeset-$(basename ${{ steps.changeset.outputs.changeset_file }} .md)" git checkout -b "$BRANCH_NAME" @@ -88,7 +84,7 @@ jobs: - name: Create Pull Request env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.CHRIS_PERSONAL_ACCESS_TOKEN }} COMMIT_MESSAGE: ${{ env.commit_message }} BRANCH_NAME: ${{ env.branch_name }} run: |