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: check SHA
  • Loading branch information
alucardzom committed Jul 3, 2025
commit 926af0341d2044c920e03e506c657ba3fd083a52
12 changes: 6 additions & 6 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ jobs:
contents: write
pull-requests: write
steps:
- name: Get current SHA of this workflow
run: |
WORKFLOW_SHA=$(git rev-parse HEAD)
echo "Current workflow SHA: $WORKFLOW_SHA"
echo "WORKFLOW_SHA=$WORKFLOW_SHA" >> $GITHUB_ENV

# Step 1: Checkout invoking repository (metamask-mobile | metamask-extension )
- name: Checkout invoking repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -94,12 +100,6 @@ jobs:
echo "GitHub Ref: ${{ github.ref }}"
echo "GitHub SHA: ${{ github.sha }}"
echo "-------------"

- name: Get current SHA of this workflow
run: |
WORKFLOW_SHA=$(git rev-parse HEAD)
echo "Current workflow SHA: $WORKFLOW_SHA"
echo "WORKFLOW_SHA=$WORKFLOW_SHA" >> $GITHUB_ENV

# Step 2: Checkout github-tools repository
- name: Checkout github-tools repository
Expand Down
Loading