diff --git a/.github/workflows/create-pull-request-multi.yml b/.github/workflows/create-pull-request-multi.yml
index d48d213..4af6d4f 100644
--- a/.github/workflows/create-pull-request-multi.yml
+++ b/.github/workflows/create-pull-request-multi.yml
@@ -38,7 +38,7 @@ jobs:
           milestone: 1
           branch: example-patches
           branch-suffix: random
-      - name: Check output environment variable
-        run: echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}"
-      - name: Check step output
-        run: echo "Pull Request Number - ${{ steps.cpr.outputs.pr_number }}"
+      - name: Check outputs
+        run: |
+          echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}"
+          echo "Pull Request Number - ${{ steps.cpr.outputs.pr_number }}"
diff --git a/.github/workflows/create-pull-request.yml b/.github/workflows/create-pull-request.yml
index d2a116a..e4c1a93 100644
--- a/.github/workflows/create-pull-request.yml
+++ b/.github/workflows/create-pull-request.yml
@@ -30,7 +30,7 @@ jobs:
           milestone: 1
           branch: example-patches
           branch-suffix: short-commit-hash
-      - name: Check output environment variable
-        run: echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}"
-      - name: Check step output
-        run: echo "Pull Request Number - ${{ steps.cpr.outputs.pr_number }}"
+      - name: Check outputs
+        run: |
+          echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}"
+          echo "Pull Request Number - ${{ steps.cpr.outputs.pr_number }}"