Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: test print variables
  • Loading branch information
alucardzom committed Jul 3, 2025
commit cd0845d5c0cfad7a7ea5b632cc52960369083f04
22 changes: 22 additions & 0 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,28 @@ jobs:
ref: ${{ inputs.base-branch }}
token: ${{ secrets.github-token }}

# Step 4: Print Input Values
- name: Print Input Values before
run: |
echo "Input Values:"
echo "-------------"
echo "Platform: ${{ inputs.platform }}"
echo "Base Branch: ${{ inputs.base-branch }}"
echo "Semver Version: ${{ inputs.semver-version }}"
echo "Previous Version Tag: ${{ inputs.previous-version-tag }}"
echo "Test Only Mode: ${{ inputs.test-only }}"
if [[ "${{ inputs.platform }}" == "mobile" ]]; then
echo "Mobile Build Version: ${{ inputs.mobile-build-version }}"
fi
echo "Mobile Template Sheet ID: ${{ inputs.mobile-template-sheet-id }}"
echo "Extension Template Sheet ID: ${{ inputs.extension-template-sheet-id }}"
echo "Release Sheet Google Document ID: ${{ inputs.release-sheet-google-document-id }}"
echo "GitHub Tools Version: ${{ inputs.github-tools-version }}"
echo "GitHub Action Ref: ${{ github.action_ref }}"
echo "GitHub Ref: ${{ github.ref }}"
echo "GitHub SHA: ${{ github.sha }}"
echo "-------------"

# Step 2: Checkout github-tools repository
- name: Checkout github-tools repository
uses: actions/checkout@v4
Expand Down
Loading