File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments