We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3712ec commit 39ee22dCopy full SHA for 39ee22d
.github/workflows/push-eas-update.yml
@@ -195,7 +195,11 @@ jobs:
195
- name: Checkout repository
196
uses: actions/checkout@v4
197
with:
198
- ref: refs/pull/${{ env.TARGET_PR_NUMBER }}/head
+ # ref: refs/pull/${{ env.TARGET_PR_NUMBER }}/head
199
+ # Original behavior: checkout PR head by number for OTA workflow
200
201
+ # For testing on this branch, checkout the commit that triggered this workflow
202
+ ref: ${{ github.sha }}
203
fetch-depth: 0
204
205
- name: Setup Node.js
0 commit comments