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 4d98634 commit 470010dCopy full SHA for 470010d
.github/workflows/generate-test-ids.yml
@@ -13,7 +13,9 @@ jobs:
13
- name: Checkout
14
uses: actions/checkout@v4
15
with:
16
- ref: ${{ github.head_ref }} # Check out the PR branch, not the merge commit
+ repository: ${{ github.event.pull_request.head.repo.full_name }}
17
+ ref: ${{ github.event.pull_request.head.ref }} # Check out the PR branch, not the merge commit
18
+ fetch-depth: 0
19
20
- name: Setup Node.js
21
uses: actions/setup-node@v4
@@ -47,4 +49,4 @@ jobs:
47
49
git config user.email "test-id-action@users.noreply.github.com"
48
50
git add "tests/**/*.json"
51
git commit -m "Update test IDs based on the schema, test data, and expected result." || echo "No changes to commit"
- git push
52
+ git push origin ${{ github.event.pull_request.head.ref }}
0 commit comments