From 714ba29a1e4be1073aba772501fa9a335a0ad35d Mon Sep 17 00:00:00 2001 From: Helder Oliveira Date: Mon, 24 Jun 2024 18:45:12 +0100 Subject: [PATCH] =?UTF-8?q?chore(changeset):=20=F0=9F=A4=96=20use=20bot=20?= =?UTF-8?q?credentials?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/changeset-handler.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/changeset-handler.yml b/.github/workflows/changeset-handler.yml index ce66837..bf00c2e 100644 --- a/.github/workflows/changeset-handler.yml +++ b/.github/workflows/changeset-handler.yml @@ -12,10 +12,17 @@ jobs: permissions: contents: write steps: + - uses: actions/create-github-app-token@v1 + id: fleek-platform-bot-token + with: + app-id: ${{ secrets.FLEEK_PLATFORM_BOT_APP_ID }} + private-key: ${{ secrets.FLEEK_PLATFORM_BOT_PRIVATE_KEY }} + - name: Checkout repository uses: actions/checkout@v4 with: - token: ${{ secrets.GITHUB_TOKEN }} + fetch-depth: 0 + token: ${{ steps.fleek-platform-bot-token.outputs.token }} - uses: pnpm/action-setup@v4 name: Install pnpm