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 workflow SHA
  • Loading branch information
alucardzom committed Jul 3, 2025
commit 5c25eb49395281be0da6b30ffb05f231246d0e5d
8 changes: 7 additions & 1 deletion .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,20 @@ 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
uses: actions/checkout@v4
with:
repository: MetaMask/github-tools
# ref: ${{ inputs.github-tools-version }}
ref: ${{ github.action_ref}}
ref: ${{ env.WORKFLOW_SHA }}
path: github-tools

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