Skip to content

Commit 0ce5569

Browse files
committed
chore(inputs): print inputs values
1 parent 7b70c42 commit 0ce5569

1 file changed

Lines changed: 21 additions & 2 deletions

File tree

.github/workflows/create-release-pr.yml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,27 @@ jobs:
9090
with:
9191
is-high-risk-environment: true
9292

93-
# Step 4: Execute the script with access to both repositories
94-
- name: Create Release
93+
# Step 4: Print Input Values
94+
- name: Print Input Values
95+
run: |
96+
echo "Input Values:"
97+
echo "-------------"
98+
echo "Platform: ${{ inputs.platform }}"
99+
echo "Base Branch: ${{ inputs.base-branch }}"
100+
echo "Semver Version: ${{ inputs.semver-version }}"
101+
echo "Previous Version Tag: ${{ inputs.previous-version-tag }}"
102+
echo "Test Only Mode: ${{ inputs.test-only }}"
103+
if [[ "${{ inputs.platform }}" == "mobile" ]]; then
104+
echo "Mobile Build Version: ${{ inputs.mobile-build-version }}"
105+
fi
106+
echo "Mobile Template Sheet ID: ${{ inputs.mobile-template-sheet-id }}"
107+
echo "Extension Template Sheet ID: ${{ inputs.extension-template-sheet-id }}"
108+
echo "Release Sheet Google Document ID: ${{ inputs.release-sheet-google-document-id }}"
109+
echo "GitHub Tools Version: ${{ inputs.github-tools-version }}"
110+
echo "-------------"
111+
112+
# Step 5: Create Release PR
113+
- name: Create Release PR
95114
id: create-release-pr
96115
shell: bash
97116
env:

0 commit comments

Comments
 (0)