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: rollback to use the commit id or branch name
  • Loading branch information
alucardzom committed Jul 3, 2025
commit c9e371b497e684122642b6e8071a571a8891f509
29 changes: 1 addition & 28 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,6 @@ jobs:
contents: write
pull-requests: write
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"

# Step 1: Checkout invoking repository (metamask-mobile | metamask-extension )
- name: Checkout invoking repository
Expand All @@ -78,35 +74,12 @@ 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
with:
repository: MetaMask/github-tools
# ref: ${{ inputs.github-tools-version }}
ref: ${{ env.WORKFLOW_SHA }}
ref: ${{ inputs.github-tools-version }}
path: github-tools

# Step 3: Setup environment from github-tools
Expand Down
Loading