From 4368b5fe7d4adc0c9b6a3b503e27fdee2b5f0ee7 Mon Sep 17 00:00:00 2001 From: Mikkel Jakobsen Date: Thu, 16 May 2024 23:27:57 +0200 Subject: [PATCH] Reflect react payload --- .github/workflows/create-pr.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-pr.yml b/.github/workflows/create-pr.yml index 725efd2a35..649daad4eb 100644 --- a/.github/workflows/create-pr.yml +++ b/.github/workflows/create-pr.yml @@ -13,11 +13,12 @@ jobs: env: BUILD_URL: ${{ github.event.client_payload.build_url }} PR_BRANCH: ${{ github.event.client_payload.branch }} + PACKAGE: ${{ github.event.client_payload.dependency_package }} run: | echo "PR_BRANCH=$PR_BRANCH" >> $GITHUB_ENV echo "BUILD_URL=$BUILD_URL" >> $GITHUB_ENV echo "PACKAGE" >> $GITHUB_ENV - if: ${{ github.event.action == 'create_pr' && github.event.client_payload.branch && github.event.client_payload.build_url && github.event.client_payload.package }} + if: ${{ github.event.action == 'create_pr' && github.event.client_payload.branch && github.event.client_payload.build_url && github.event.client_payload.dependency_package }} - uses: actions/checkout@v4 with: