From 7d0b7618a66737ad0d497bd633061c2cae63878f Mon Sep 17 00:00:00 2001 From: Darioush Jalali Date: Wed, 21 Aug 2024 14:09:18 -0700 Subject: [PATCH] add id --- .github/workflows/sync-subnet-evm-branch.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync-subnet-evm-branch.yml b/.github/workflows/sync-subnet-evm-branch.yml index bcf64a2403..7edd0eec14 100644 --- a/.github/workflows/sync-subnet-evm-branch.yml +++ b/.github/workflows/sync-subnet-evm-branch.yml @@ -48,6 +48,7 @@ jobs: git checkout -- .github/workflows - name: Create Pull Request + id: create_pr uses: peter-evans/create-pull-request@v6 with: commit-message: "Sync subnet-evm to ${{ steps.fetch_remote_branch.outputs.result }}" @@ -58,7 +59,7 @@ jobs: draft: true - name: PR Outputs - if: ${{ steps.cpr.outputs.pull-request-number }} + if: ${{ steps.create_pr.outputs.pull-request-number }} run: | - echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" - echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" + echo "Pull Request Number - ${{ steps.create_pr.outputs.pull-request-number }}" + echo "Pull Request URL - ${{ steps.create_pr.outputs.pull-request-url }}"