From 9772319915afc23a604475d51b7325e5396cc79e Mon Sep 17 00:00:00 2001 From: Angus Bayley Date: Mon, 24 Feb 2025 18:00:48 +0000 Subject: [PATCH] ci: update cryptoassets commit signed via ghcommit --- .github/workflows/release-create.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-create.yml b/.github/workflows/release-create.yml index c59b3e3acee2..3971c2bfb311 100644 --- a/.github/workflows/release-create.yml +++ b/.github/workflows/release-create.yml @@ -37,10 +37,18 @@ jobs: run: pnpm build:libs - name: import CAL tokens run: pnpm import:cal-tokens - - name: commit new tokens + - name: Add changed files run: | git add . - git commit -m 'chore(prerelease) update cryptoassets' || echo "No new tokens added" + - name: commit new tokens + uses: planetscale/ghcommit-action@v0.1.6 + with: + commit_message: "chore(prerelease) update cryptoassets" + repo: ${{ github.repository }} + branch: $RELEASE_BRANCH + file_pattern: '*' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: update sortByMarketcap snapshot run: pnpm common jest --runTestsByPath src/currencies/sortByMarketcap.test.ts -u - name: commit sortByMarketcap.test.ts