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 820ed4e commit e9a6969Copy full SHA for e9a6969
.github/workflows/generate_bindings.yml
@@ -23,8 +23,9 @@ jobs:
23
- name: Checkout PR branch
24
uses: actions/checkout@v4
25
with:
26
- ref: ${{ github.head_ref }}
27
- token: ${{ secrets.GITHUB_TOKEN }}
+ ref: ${{ github.event.pull_request.head.ref }}
+ repository: ${{ github.event.pull_request.head.repo.full_name }}
28
+ token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
29
30
- uses: julia-actions/setup-julia@v1
31
@@ -53,4 +54,4 @@ jobs:
53
54
git config --global user.email "github-actions[bot]@users.noreply.github.com"
55
git add .
56
git commit -m "Regenerate bindings"
- git push origin ${{ github.head_ref }}
57
+ git push origin ${{ github.event.pull_request.head.ref }}
0 commit comments