From febd5c05caeee6ce25ffb2682be572cae152a50a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vitalij=20Va=C5=A1=C4=8Denko?= Date: Mon, 4 Dec 2023 15:54:10 +0100 Subject: [PATCH] ci: Fix PR step command (#479) --- .github/workflows/tokens-pr.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tokens-pr.yml b/.github/workflows/tokens-pr.yml index 29d09c35..2d983889 100644 --- a/.github/workflows/tokens-pr.yml +++ b/.github/workflows/tokens-pr.yml @@ -33,10 +33,11 @@ jobs: - name: Create Pull Request run: | - gh pr create --base master \ + gh pr create \ + --base master \ --head ${{ github.ref_name }} \ --title 'feat: Design Tokens Update' \ --body 'Design Tokens were updated! This PR was created to update the code.' \ - --reviwer MewsSystems/tech.mo.platform.owners + --reviewer MewsSystems/tech.mo.platform.owners env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}