From f253982c842c8cfc020ed82156cbe111cc1639b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C4=87i=C4=87=20Filip?= Date: Thu, 14 Nov 2024 17:53:20 +0100 Subject: [PATCH] Add rasabot PAT to chat-widget workflow (#93) --- .github/workflows/chat-widget.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/chat-widget.yml b/.github/workflows/chat-widget.yml index 0ecfbea..d6472c6 100644 --- a/.github/workflows/chat-widget.yml +++ b/.github/workflows/chat-widget.yml @@ -55,8 +55,10 @@ jobs: - name: NPM Publish ChatWidget if: ${{ github.event_name == 'workflow_dispatch' }} + env: + GITHUB_TOKEN: ${{ secrets.RASABOT_PAT }} # `--force-publish` flag keeps versions consistent across our packages. Totally wild name for this kind of a flag :shrug: run: | - git config --global user.email "chatwidget@rasahq.com" - git config --global user.name "RasaHQ ChatWidget" + git config --global user.name "rasabot" + git config --global user.email "rasabot@rasa.com" npx lerna publish ${{ inputs.version }} --yes --force-publish